From: Michael Date: Fri, 5 Apr 2019 20:24:49 +0000 (+0000) Subject: Remove converted queue entries X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b30d01bea096ad54975163b60852e3c864961995;p=friendica.git Remove converted queue entries --- diff --git a/update.php b/update.php index cc4b0ea2ca..40a3e8ff0d 100644 --- a/update.php +++ b/update.php @@ -371,6 +371,7 @@ function update_1309() $deliver_options = ['priority' => PRIORITY_MEDIUM, 'dont_fork' => true]; Worker::add($deliver_options, 'Delivery', $cmd, $item['id'], $entry['cid']); Logger::info('Added delivery worker', ['command' => $cmd, 'item' => $item['id'], 'contact' => $entry['cid']]); + DBA::delete('queue', ['id' => $entry['id']]); } return Update::SUCCESS; }