diff options
author | Mario <mario@mariovavti.com> | 2025-05-14 08:57:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-05-14 08:57:47 +0000 |
commit | 6e8481e90e427be426325ece117cccb0c7f4ec66 (patch) | |
tree | 23fcd10b02918d40153084781ca348021e55787c | |
parent | 47d988419fbfcc61c0b87069705f455816e114b3 (diff) | |
download | volse-hubzilla-6e8481e90e427be426325ece117cccb0c7f4ec66.tar.gz volse-hubzilla-6e8481e90e427be426325ece117cccb0c7f4ec66.tar.bz2 volse-hubzilla-6e8481e90e427be426325ece117cccb0c7f4ec66.zip |
fix notfication issue with update activities
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 29a002427..12dbfee7f 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -511,7 +511,7 @@ class Enotify { */ - $hash = ((in_array($params['verb'], ['Create'])) ? $params['item']['uuid'] : $params['item']['thr_parent_uuid']); + $hash = ((in_array($params['verb'], ['Create', 'Update'])) ? $params['item']['uuid'] : $params['item']['thr_parent_uuid']); if (!$hash) { $hash = new_uuid(); |