aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-04-18 17:07:29 -0700
committerMario Vavti <mario@mariovavti.com>2018-04-19 08:42:50 +0200
commitf634d157689f0290c1712a0b569a3b4a6af1dc82 (patch)
treeb21f2743dcb64f535b185cf40588b65547e74504
parent9bc9aa123f942062f950452e2303e4d7932a809e (diff)
downloadvolse-hubzilla-f634d157689f0290c1712a0b569a3b4a6af1dc82.tar.gz
volse-hubzilla-f634d157689f0290c1712a0b569a3b4a6af1dc82.tar.bz2
volse-hubzilla-f634d157689f0290c1712a0b569a3b4a6af1dc82.zip
do not queue anything which lacks a destination url
-rw-r--r--include/queue_fn.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/queue_fn.php b/include/queue_fn.php
index 798ac36db..f05bac5b0 100644
--- a/include/queue_fn.php
+++ b/include/queue_fn.php
@@ -95,6 +95,12 @@ function queue_set_delivered($id,$channel = 0) {
function queue_insert($arr) {
+ // do not queue anything with no destination
+
+ if(! (array_key_exists('posturl',$arr) && trim($arr['posturl']))) {
+ return false;
+ }
+
$x = q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_priority,
outq_created, outq_updated, outq_scheduled, outq_notify, outq_msg )
values ( '%s', %d, %d, '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', '%s' )",