From: Michael Date: Sun, 5 Jun 2022 20:38:05 +0000 (+0000) Subject: Hopefully make threads writable X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=557b1125e2dbfecb090befe9f2735dda2ea76271;p=friendica.git Hopefully make threads writable --- diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index e30b809ae2..5cc2638495 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -556,7 +556,7 @@ class Conversation if (in_array($mode, ['community', 'contacts', 'profile'])) { $writable = true; } else { - $writable = ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED); + $writable = $items[0]['writable'] || ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED); } if (!local_user()) {