diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/zot.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index f1cfcc070..0d509b3b4 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1502,13 +1502,20 @@ function build_sync_packet($uid = 0, $packet = null) { $a = get_app(); logger('build_sync_packet'); + if(! $uid) $uid = local_user(); if(! $uid) return; - $channel = $a->get_channel(); + $r = q("select * from channel where channel_id = %d limit 1", + intval($uid) + ); + if(! $r) + return; + + $channel = $r[0]; $h = q("select * from hubloc where hubloc_hash = '%s'", dbesc($channel['channel_hash']) |