From: Michael Date: Thu, 11 Oct 2018 20:38:57 +0000 (+0000) Subject: We now store the diaspora comment data as well X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=82682889536046ca650ce35ff1410be2bb736c56;p=friendica.git We now store the diaspora comment data as well --- diff --git a/src/Protocol/ActivityPub/Processor.php b/src/Protocol/ActivityPub/Processor.php index 5d2d7fe116..166530f472 100644 --- a/src/Protocol/ActivityPub/Processor.php +++ b/src/Protocol/ActivityPub/Processor.php @@ -215,6 +215,7 @@ class Processor $item['tag'] = self::constructTagList($activity['tags'], $activity['sensitive']); $item['app'] = $activity['service']; $item['plink'] = defaults($activity, 'alternate-url', $item['uri']); + $item['diaspora_signed_text'] = defaults($activity, 'diaspora:comment', ''); $item = self::constructAttachList($activity['attachments'], $item);