diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-21 17:30:40 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-21 17:30:40 -0800 |
commit | 6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca (patch) | |
tree | e8a91efc272bab533555d97a7a0533c563a00853 /view/js | |
parent | babe14410c92b2ae6985aebf69d0e755c0fc2045 (diff) | |
parent | d942818bd9d9e90db7a3083bfe33a54732f6184d (diff) | |
download | volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.gz volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.bz2 volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/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", { |