X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fconversation.ex;h=37d455cfc865b358dfb22a2228910a87cf487743;hb=7637ef42033b2da79ca61e9dee8fb4187d1a8257;hp=be5821ad73c16b79c182c537c41fa9dea5fcc97b;hpb=18c8c8d1761e49b442ceef425f5de44166266d4e;p=akkoma diff --git a/lib/pleroma/conversation.ex b/lib/pleroma/conversation.ex index be5821ad7..37d455cfc 100644 --- a/lib/pleroma/conversation.ex +++ b/lib/pleroma/conversation.ex @@ -1,5 +1,5 @@ # Pleroma: A lightweight social networking server -# Copyright © 2017-2019 Pleroma Authors +# Copyright © 2017-2020 Pleroma Authors # SPDX-License-Identifier: AGPL-3.0-only defmodule Pleroma.Conversation do @@ -67,6 +67,14 @@ defmodule Pleroma.Conversation do participations = Enum.map(users, fn user -> + invisible_conversation = Enum.any?(users, &User.blocks?(user, &1)) + + unless invisible_conversation do + User.increment_unread_conversation_count(conversation, user) + end + + opts = Keyword.put(opts, :invisible_conversation, invisible_conversation) + {:ok, participation} = Participation.create_for_user_and_conversation(user, conversation, opts)