diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-02-16 13:12:22 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-02-16 13:12:22 +0100 |
commit | 7839b931f1ec66ea576593f58f7141e8097bb201 (patch) | |
tree | fffcd4aa559995d4ee971b748084eb396c181e01 | |
parent | cbf8c4bdb274f8d9c326961b9d0bf0c2a2ac35a0 (diff) | |
download | volse-hubzilla-7839b931f1ec66ea576593f58f7141e8097bb201.tar.gz volse-hubzilla-7839b931f1ec66ea576593f58f7141e8097bb201.tar.bz2 volse-hubzilla-7839b931f1ec66ea576593f58f7141e8097bb201.zip |
make sure we provide a created timestamp for likes and remove the workaround which returned the wrong date format
-rw-r--r-- | Zotlabs/Lib/Activity.php | 3 | ||||
-rw-r--r-- | Zotlabs/Module/Like.php | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 940280572..68ac320ba 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -822,7 +822,8 @@ class Activity { ]; } - $ret['published'] = ((isset($i['created'])) ? datetime_convert('UTC', 'UTC', $i['created'], ATOM_TIME) : datetime_convert()); + $ret['published'] = datetime_convert('UTC', 'UTC', $i['created'], ATOM_TIME); + if (isset($i['created'], $i['edited']) && $i['created'] !== $i['edited']) { $ret['updated'] = datetime_convert('UTC', 'UTC', $i['edited'], ATOM_TIME); if ($ret['type'] === 'Create') { diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php index 98fa7db5a..ef41faedd 100644 --- a/Zotlabs/Module/Like.php +++ b/Zotlabs/Module/Like.php @@ -546,6 +546,7 @@ class Like extends Controller { $arr['deny_cid'] = $deny_cid; $arr['deny_gid'] = $deny_gid; $arr['item_private'] = $private; + $arr['created'] = datetime_convert(); call_hooks('post_local', $arr); |