diff options
author | Mario <mario@mariovavti.com> | 2020-09-28 20:31:26 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-09-28 20:31:26 +0000 |
commit | a7bf07b864ab74884f3f2bfabd57d9aa5ae1e49c (patch) | |
tree | 906890c07d59597354d18a8905b630a338c101d6 /Zotlabs | |
parent | a80e59812bab4287f787bf5514de866c92024e08 (diff) | |
download | volse-hubzilla-a7bf07b864ab74884f3f2bfabd57d9aa5ae1e49c.tar.gz volse-hubzilla-a7bf07b864ab74884f3f2bfabd57d9aa5ae1e49c.tar.bz2 volse-hubzilla-a7bf07b864ab74884f3f2bfabd57d9aa5ae1e49c.zip |
5.0RC testing: fix uuid for likes/dislikes
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Activity.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 83c04c042..9c7b4e601 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -2023,7 +2023,7 @@ class Activity { $s['mid'] = $act->id; $s['parent_mid'] = $act->obj['id']; - $s['uuid'] = $act->{'diaspora:guid'}; + $s['uuid'] = $act->data['diaspora:guid']; // over-ride the object timestamp with the activity |