build_sync_packet was looking at stale channel info - load it fresh from the DB.

This commit is contained in:
friendica 2013-07-25 20:10:53 -07:00
parent 65c8100948
commit e822ab65d7

View File

@ -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'])