diff options
author | friendica <info@friendica.com> | 2013-07-25 20:10:53 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-25 20:10:53 -0700 |
commit | e822ab65d7a3321b063725b52b32d392ad1c428b (patch) | |
tree | d41f498ded17cdde5df91ce1e9c8481bbdcdb8bb | |
parent | 65c8100948b948b35a122ec0104ecb623d3249fa (diff) | |
download | volse-hubzilla-e822ab65d7a3321b063725b52b32d392ad1c428b.tar.gz volse-hubzilla-e822ab65d7a3321b063725b52b32d392ad1c428b.tar.bz2 volse-hubzilla-e822ab65d7a3321b063725b52b32d392ad1c428b.zip |
build_sync_packet was looking at stale channel info - load it fresh from the DB.
-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']) |