diff options
author | zotlabs <mike@macgirvin.com> | 2019-05-03 04:09:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-05-03 04:09:04 -0700 |
commit | f127c558025958ee9f1c60f1dd8f178a8a85c03e (patch) | |
tree | 04b914609379850a873e32afa3361c4438d4c94c /include/connections.php | |
parent | 13247a0e0035c2a468129b48806a99cb869161f1 (diff) | |
download | volse-hubzilla-f127c558025958ee9f1c60f1dd8f178a8a85c03e.tar.gz volse-hubzilla-f127c558025958ee9f1c60f1dd8f178a8a85c03e.tar.bz2 volse-hubzilla-f127c558025958ee9f1c60f1dd8f178a8a85c03e.zip |
removing items from ex-connections turns out to be more complicated than originally envisioned
Diffstat (limited to 'include/connections.php')
-rw-r--r-- | include/connections.php | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/include/connections.php b/include/connections.php index 533c5be39..e942503f0 100644 --- a/include/connections.php +++ b/include/connections.php @@ -379,12 +379,18 @@ function contact_remove($channel_id, $abook_id) { intval($channel_id) ); if($r) { + $already_saved = []; foreach($r as $rr) { $w = $x = $y = null; - // if this isn't the parent, see if the conversation was retained + // optimise so we only process newly seen parent items + if (in_array($rr['parent'],$already_saved)) { + continue; + } + // if this isn't the parent, fetch the parent's item_retained and item_starred to see if the conversation + // should be retained if($rr['id'] != $rr['parent']) { - $w = q("select id from item where id = %d and item_retained = 0", + $w = q("select id, item_retained, item_starred from item where id = %d", intval($rr['parent']) ); if($w) { @@ -394,6 +400,10 @@ function contact_remove($channel_id, $abook_id) { intval($w[0]['id']), intval(TERM_FILE) ); + if (intval($w[0]['item_retained']) || intval($w[0]['item_starred']) || $x) { + $already_saved[] = $rr['parent']; + continue; + } } } // see if this item was filed @@ -402,7 +412,7 @@ function contact_remove($channel_id, $abook_id) { intval($rr['id']), intval(TERM_FILE) ); - if($w || $x || $y) { + if ($y) { continue; } drop_item($rr['id'],false); |