diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-10-11 17:10:56 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-10-11 17:10:56 +0200 |
commit | d5291e9b074fbf408cdbf0ce88567e0a4ed48e07 (patch) | |
tree | 8c6a073b91e8627c4afd08c3e90828216d23e862 /Zotlabs/Module/React.php | |
parent | a1818b1a29974132e16fb68c65c1b3a9904a5b18 (diff) | |
download | volse-hubzilla-d5291e9b074fbf408cdbf0ce88567e0a4ed48e07.tar.gz volse-hubzilla-d5291e9b074fbf408cdbf0ce88567e0a4ed48e07.tar.bz2 volse-hubzilla-d5291e9b074fbf408cdbf0ce88567e0a4ed48e07.zip |
containers: port core modules and attach_store_item()
Diffstat (limited to 'Zotlabs/Module/React.php')
-rw-r--r-- | Zotlabs/Module/React.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zotlabs/Module/React.php b/Zotlabs/Module/React.php index e04b9b257..e1abd242e 100644 --- a/Zotlabs/Module/React.php +++ b/Zotlabs/Module/React.php @@ -91,6 +91,9 @@ class React extends Controller { if ($x['success']) { $nid = $x['item_id']; Master::Summon(['Notifier', 'like', $nid]); + if (!empty($x['approval_id'])) { + Master::Summon(['Notifier', 'like', $x['approval_id']]); + } } } |