diff options
author | Mario Vavti <mario@mariovavti.com> | 2025-02-11 17:52:26 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2025-02-11 17:52:26 +0100 |
commit | bfce562a46947961b0c5c8d54dbf63339f7cc370 (patch) | |
tree | b1289000c34d43d0df6021b58f2bfe1b080ea6bc | |
parent | 8d8a7f44e193f48ee3e2ea39ead128fae53ff4fd (diff) | |
download | volse-hubzilla-bfce562a46947961b0c5c8d54dbf63339f7cc370.tar.gz volse-hubzilla-bfce562a46947961b0c5c8d54dbf63339f7cc370.tar.bz2 volse-hubzilla-bfce562a46947961b0c5c8d54dbf63339f7cc370.zip |
start sending contextHistory along with context
-rw-r--r-- | Zotlabs/Lib/Activity.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 10df11174..925a4ef7d 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -616,6 +616,7 @@ class Activity { if (!empty($cnv)) { if (is_string($cnv) && str_starts_with($cnv, z_root())) { $cnv = str_replace(['/item/', '/activity/'], ['/conversation/', '/conversation/'], $cnv); + $ret['contextHistory'] = $cnv; } $ret['context'] = $cnv; } @@ -1050,6 +1051,7 @@ class Activity { if (!empty($cnv)) { if (is_string($cnv) && str_starts_with($cnv, z_root())) { $cnv = str_replace(['/item/', '/activity/'], ['/conversation/', '/conversation/'], $cnv); + $ret['contextHistory'] = $cnv; } $ret['context'] = $cnv; } @@ -3694,6 +3696,8 @@ class Activity { return [ 'zot' => z_root() . '/apschema#', + + 'contextHistory' => 'https://w3id.org/fep/171b/contextHistory', 'schema' => 'http://schema.org#', 'ostatus' => 'http://ostatus.org#', 'diaspora' => 'https://diasporafoundation.org/ns/', @@ -3717,7 +3721,6 @@ class Activity { 'manuallyApprovesFollowers' => 'as:manuallyApprovesFollowers', 'Hashtag' => 'as:Hashtag' - ]; } |