aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2020-11-15 11:03:17 +0000
committerMario <mario@mariovavti.com>2020-11-15 11:03:17 +0000
commite5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7 (patch)
tree71d187ff2f7d75891043a871c6030b30bf523704 /Zotlabs
parentad91ab68cefcccb90dd9222f27bacbc184cd7cdc (diff)
downloadvolse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.tar.gz
volse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.tar.bz2
volse-hubzilla-e5dd108bd7a13ce9fd5e2085b5e272d3a66c5fe7.zip
outq_hash is unique - no need for limit
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Deliver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Deliver.php b/Zotlabs/Daemon/Deliver.php
index 7d053fb87..c853af6a8 100644
--- a/Zotlabs/Daemon/Deliver.php
+++ b/Zotlabs/Daemon/Deliver.php
@@ -18,7 +18,7 @@ class Deliver {
if(! $argv[$x])
continue;
- $r = q("select * from outq where outq_hash = '%s' limit 1",
+ $r = q("select * from outq where outq_hash = '%s'",
dbesc($argv[$x])
);