From 557b1125e2dbfecb090befe9f2735dda2ea76271 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 5 Jun 2022 20:38:05 +0000 Subject: [PATCH] Hopefully make threads writable --- src/Content/Conversation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) {