more queue tweaks

This commit is contained in:
friendica
2014-08-28 22:55:40 -07:00
parent 00004e1a12
commit c6b67518d6
2 changed files with 2 additions and 2 deletions

View File

@@ -51,7 +51,7 @@ function queue_run($argv, $argc){
$result = z_post_url($rr['outq_posturl'],$rr['outq_msg']);
if($result['success'] && $result['return_code'] < 300) {
logger('deliver: queue post success to ' . $rr['outq_posturl'], LOGGER_DEBUG);
$y = q("update outq set outq_delivered = '%s' where outq_hash = '%s' limit 1",
$y = q("delete from outq where outq_hash = '%s' limit 1",
dbesc($rr['ouq_hash'])
);
}