diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-11-09 12:39:24 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-11-09 12:39:24 +0100 |
commit | b6dbbbc82fd66335f8be990bb74afbd46e63954b (patch) | |
tree | 33ff1e61824eff7713439078181a567b771a3033 /include | |
parent | 954d92c354aef93cac7079472c55b53ac4a07d2a (diff) | |
download | volse-hubzilla-b6dbbbc82fd66335f8be990bb74afbd46e63954b.tar.gz volse-hubzilla-b6dbbbc82fd66335f8be990bb74afbd46e63954b.tar.bz2 volse-hubzilla-b6dbbbc82fd66335f8be990bb74afbd46e63954b.zip |
fix regression propagating deletes
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/items.php b/include/items.php index 98cff99f9..dfa64fd27 100644 --- a/include/items.php +++ b/include/items.php @@ -3402,9 +3402,9 @@ function start_delivery_chain($channel, $item, $item_id, $parent, $group = false if ($post_id) { Master::Summon(['Notifier', 'tgroup', $post_id]); - if ($approval_id) { - Master::Summon(['Notifier', 'tgroup', $approval_id]); - } + if ($approval_id) { + Master::Summon(['Notifier', 'tgroup', $approval_id]); + } } q("update channel set channel_lastpost = '%s' where channel_id = %d", |