Added update for post-thread-user

This commit is contained in:
Michael 2021-02-09 17:04:41 +00:00
parent f1377ce7fb
commit badb73d0cb
1 changed files with 2 additions and 0 deletions

View File

@ -247,6 +247,7 @@ class Item
while ($item = Post::fetch($items)) {
if (in_array($item['uid'], [$uid, 0])) {
Post\User::update($item['uri-id'], $uid, ['hidden' => true], true);
Post\ThreadUser::update($item['uri-id'], $uid, ['hidden' => true], true);
}
if ($item['uid'] == $uid) {
@ -353,6 +354,7 @@ class Item
}
} elseif ($item['uid'] != 0) {
Post\User::update($item['uri-id'], $item['uid'], ['hidden' => true]);
Post\ThreadUser::update($item['uri-id'], $item['uid'], ['hidden' => true]);
}
Logger::info('Item has been marked for deletion.', ['id' => $item_id]);