X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fconversation.ex;h=37d455cfc865b358dfb22a2228910a87cf487743;hb=a17bfb5fababbe25fa2abcfccd013c9f3edc2ef7;hp=be5821ad73c16b79c182c537c41fa9dea5fcc97b;hpb=560dbad538ba978d00116b1b037502ba2185cb5e;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)