diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-18 17:07:29 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-18 17:07:29 -0700 |
commit | 85ccfb4bbcbd22ac234a8ac2a3d7ec2ec831ae29 (patch) | |
tree | 9e38fdf42531008bce8f797c6a1d644b62428173 /include | |
parent | 2ec28a59932defdf6353f8ed72e3e67ef5a90f9a (diff) | |
download | volse-hubzilla-85ccfb4bbcbd22ac234a8ac2a3d7ec2ec831ae29.tar.gz volse-hubzilla-85ccfb4bbcbd22ac234a8ac2a3d7ec2ec831ae29.tar.bz2 volse-hubzilla-85ccfb4bbcbd22ac234a8ac2a3d7ec2ec831ae29.zip |
do not queue anything which lacks a destination url
Diffstat (limited to 'include')
-rw-r--r-- | include/queue_fn.php | 6 |
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' )", |