diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-21 22:10:09 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-21 22:10:09 +0100 |
commit | d942818bd9d9e90db7a3083bfe33a54732f6184d (patch) | |
tree | e8a91efc272bab533555d97a7a0533c563a00853 /view/js/mod_hq.js | |
parent | e2814f5d8046329486073294dd1fd588efe5e052 (diff) | |
download | volse-hubzilla-d942818bd9d9e90db7a3083bfe33a54732f6184d.tar.gz volse-hubzilla-d942818bd9d9e90db7a3083bfe33a54732f6184d.tar.bz2 volse-hubzilla-d942818bd9d9e90db7a3083bfe33a54732f6184d.zip |
use item_thread_top = 1 instead of mid = parent_mid and make sure local_channel is intval
Diffstat (limited to 'view/js/mod_hq.js')
-rw-r--r-- | view/js/mod_hq.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/mod_hq.js b/view/js/mod_hq.js index cf7ec941c..8bbd5e3ad 100644 --- a/view/js/mod_hq.js +++ b/view/js/mod_hq.js @@ -1,4 +1,4 @@ -function hqLiveUpdate(notify_id, b64mid) { +function hqLiveUpdate(notify_id) { if(typeof profile_uid === 'undefined') profile_uid = false; /* Should probably be unified with channelId defined in head.tpl */ if((src === null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; } @@ -65,7 +65,7 @@ function hqLiveUpdate(notify_id, b64mid) { // else data was valid - reset the recursion counter liveRecurse = 0; - if(notify_id !== 'undefined') { + if(notify_id !== 'undefined') { $.post( "hq", { |