diff options
author | mrjive <mrjive@mrjive.it> | 2018-01-22 09:34:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 09:34:08 +0100 |
commit | 131baa9f4584b74ab76328d776c0bb5ce603da7d (patch) | |
tree | c962a68dbf7874e326f4ca268fe0183ac184ea12 /Zotlabs/Daemon/Notifier.php | |
parent | 8e475810a74f738fe3b23648b904639e5099d995 (diff) | |
parent | 1709dbd376af3171815f25b7055fb41da53924cb (diff) | |
download | volse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.tar.gz volse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.tar.bz2 volse-hubzilla-131baa9f4584b74ab76328d776c0bb5ce603da7d.zip |
Merge pull request #10 from redmatrix/dev
Dev
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index ca6a7c08a..b168db5ae 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -90,8 +90,6 @@ class Notifier { $item_id = $argv[2]; - $extra = (($argc > 3) ? $argv[3] : null); - if(! $item_id) return; @@ -315,7 +313,7 @@ class Notifier { } - if($target_item['id'] == $target_item['parent']) { + if($target_item['mid'] === $target_item['parent_mid']) { $parent_item = $target_item; $top_level_post = true; } |