diff options
author | Mario <mario@mariovavti.com> | 2024-06-21 10:18:40 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-21 10:18:40 +0000 |
commit | 1c34c354cf48d73863a1e14691f15e678d939023 (patch) | |
tree | ef8108e1552164d9bf28f8104a49ecc30fe9abd0 /view/js | |
parent | 0f02553d129e2bc533cf98a590f3c9e04dc55bf3 (diff) | |
download | volse-hubzilla-1c34c354cf48d73863a1e14691f15e678d939023.tar.gz volse-hubzilla-1c34c354cf48d73863a1e14691f15e678d939023.tar.bz2 volse-hubzilla-1c34c354cf48d73863a1e14691f15e678d939023.zip |
fix issue where event items were parsed multiple times
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 7eca7408e..6fda3c8d0 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1008,7 +1008,7 @@ function liveUpdate(notify_id) { in_progress = false; liveRecurse ++; if(liveRecurse < 10) { - liveUpdate(); + liveUpdate(notify_id); } else { console.log('Incomplete data. Too many attempts. Giving up.'); |