From e822ab65d7a3321b063725b52b32d392ad1c428b Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 25 Jul 2013 20:10:53 -0700 Subject: build_sync_packet was looking at stale channel info - load it fresh from the DB. --- include/zot.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'include') 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']) -- cgit v1.2.3