diff options
author | Mario <mario@mariovavti.com> | 2022-01-26 09:35:08 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-26 09:35:08 +0000 |
commit | 8250cb1e8daefc67b5bdfe966a95aee197145012 (patch) | |
tree | b01b97212a5dc28f2ce261d3680f11eb67882bb6 | |
parent | ffe2c4d42b47c529cb64c5267f31475c819439f0 (diff) | |
download | volse-hubzilla-8250cb1e8daefc67b5bdfe966a95aee197145012.tar.gz volse-hubzilla-8250cb1e8daefc67b5bdfe966a95aee197145012.tar.bz2 volse-hubzilla-8250cb1e8daefc67b5bdfe966a95aee197145012.zip |
always store the raw message
-rw-r--r-- | Zotlabs/Lib/Activity.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 2de25885a..09aaeae25 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2639,11 +2639,7 @@ class Activity { } set_iconfig($s, 'activitypub', 'recips', $act->raw_recips); - - $parent = (($s['parent_mid'] && $s['parent_mid'] === $s['mid']) ? true : false); - if ($parent) { - set_iconfig($s, 'activitypub', 'rawmsg', $act->raw, 1); - } + set_iconfig($s, 'activitypub', 'rawmsg', $act->raw, 1); $hookinfo = [ 'act' => $act, |