aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-24 19:40:36 -0700
committerfriendica <info@friendica.com>2014-03-24 19:40:36 -0700
commit50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c (patch)
treeda864633df97fd26a9718b6c831c3fb4a938aca0 /include/zot.php
parent235b0335608439b98d74a205a380d0f77baf6b4f (diff)
downloadvolse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.tar.gz
volse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.tar.bz2
volse-hubzilla-50a7e9ce8fe30959d6e4343e8fdafaeca1e7856c.zip
this should improve queue performance dramatically.
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php
index 3c9731f05..c82918b3a 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -2074,10 +2074,11 @@ function build_sync_packet($uid = 0, $packet = null) {
foreach($synchubs as $hub) {
$hash = random_string();
$n = zot_build_packet($channel,'notify',$env_recips,$hub['hubloc_sitekey'],$hash);
- q("insert into outq ( outq_hash, outq_account, outq_channel, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg ) values ( '%s', %d, %d, '%s', %d, '%s', '%s', '%s', '%s' )",
+ q("insert into outq ( outq_hash, outq_account, outq_channel, outq_driver, outq_posturl, outq_async, outq_created, outq_updated, outq_notify, outq_msg ) values ( '%s', %d, %d, '%s', '%s', %d, '%s', '%s', '%s', '%s' )",
dbesc($hash),
intval($channel['channel_account']),
intval($channel['channel_id']),
+ dbesc('zot'),
dbesc($hub['hubloc_callback']),
intval(1),
dbesc(datetime_convert()),