diff options
author | Mario <mario@mariovavti.com> | 2019-11-22 21:01:54 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-11-22 21:01:54 +0000 |
commit | fe803135d85c07f1ccf14326d9bd87661d89f3f3 (patch) | |
tree | 46131ad16ee3f67a73e574e1c418e75aae153c01 /view | |
parent | 908ebed9fd522f67b881490966bc43e10d82c3cd (diff) | |
download | volse-hubzilla-fe803135d85c07f1ccf14326d9bd87661d89f3f3.tar.gz volse-hubzilla-fe803135d85c07f1ccf14326d9bd87661d89f3f3.tar.bz2 volse-hubzilla-fe803135d85c07f1ccf14326d9bd87661d89f3f3.zip |
sse: fix another regression
Diffstat (limited to 'view')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/view/js/main.js b/view/js/main.js index 5a8e8eef6..1df8dc9eb 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -854,10 +854,8 @@ function updateConvItems(mode,data) { //console.log(nmids); - sse_mids = nmids; - nmids.forEach(function (nmid, index) { - //sse_mids.push(nmid); + sse_mids.push(nmid); if($('.notification[data-b64mid=\'' + nmid + '\']').length) { $('.notification[data-b64mid=\'' + nmid + '\']').each(function() { var n = this.parentElement.id.split('-'); |