diff options
author | Mario <mario@mariovavti.com> | 2021-02-01 20:52:35 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-01 20:52:35 +0000 |
commit | 70fa7ad8d0fe3bab4f9702ba2d5ac0065977c567 (patch) | |
tree | 6712646ec7a299b08989bca8e3f939cca50bba45 /Zotlabs/Daemon | |
parent | cd081ac077b1c244d8aca37f09f63a7410a54a10 (diff) | |
download | volse-hubzilla-70fa7ad8d0fe3bab4f9702ba2d5ac0065977c567.tar.gz volse-hubzilla-70fa7ad8d0fe3bab4f9702ba2d5ac0065977c567.tar.bz2 volse-hubzilla-70fa7ad8d0fe3bab4f9702ba2d5ac0065977c567.zip |
too many arguments
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Convo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Convo.php b/Zotlabs/Daemon/Convo.php index f7478d778..940216b2c 100644 --- a/Zotlabs/Daemon/Convo.php +++ b/Zotlabs/Daemon/Convo.php @@ -49,7 +49,7 @@ class Convo { // and that lets us use implied_create $AS = new ActivityStreams($message); if ($AS->is_valid() && is_array($AS->obj)) { - $item = Activity::decode_note($AS, true); + $item = Activity::decode_note($AS); Activity::store($channel, $contact['abook_xchan'], $AS, $item); } } |