diff options
author | Mario <mario@mariovavti.com> | 2023-05-15 08:04:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-05-15 08:04:02 +0000 |
commit | 18914f2081067d9d2003f2a936ba803593515331 (patch) | |
tree | 2eaca32741bb64ab250dd8978b5e3627a6be0714 /Zotlabs/Lib/ActivityStreams.php | |
parent | 5bdd699c9d8753be32e2155001247914b19fab0a (diff) | |
parent | b50da2d8b783745d2dde3e82c5809effafd9b7d5 (diff) | |
download | volse-hubzilla-18914f2081067d9d2003f2a936ba803593515331.tar.gz volse-hubzilla-18914f2081067d9d2003f2a936ba803593515331.tar.bz2 volse-hubzilla-18914f2081067d9d2003f2a936ba803593515331.zip |
Merge branch 'dev' into 8.4RC
Diffstat (limited to 'Zotlabs/Lib/ActivityStreams.php')
-rw-r--r-- | Zotlabs/Lib/ActivityStreams.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php index 9e460ff75..f07f99ac3 100644 --- a/Zotlabs/Lib/ActivityStreams.php +++ b/Zotlabs/Lib/ActivityStreams.php @@ -126,6 +126,7 @@ class ActivityStreams { if ((!$this->parent_id) && is_array($this->obj) && isset($this->obj['inReplyTo'])) { $this->parent_id = $this->obj['inReplyTo']; } + if ((!$this->parent_id) && is_array($this->obj) && isset($this->obj['id'])) { $this->parent_id = $this->obj['id']; } |