diff options
| author | TheFrenchGhosty <47571719+TheFrenchGhosty@users.noreply.github.com> | 2021-01-12 13:52:53 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-12 13:52:53 +0000 |
| commit | 920785631bf6a37583532af09b4492f6ed3f95f2 (patch) | |
| tree | 5d76bd4e5e5fdd98d948a19db647aec86be3907a /assets/js/watch.js | |
| parent | c28b1f6fb9901aa033dccf5273392d30162953d7 (diff) | |
| parent | 5a08dfa72f26a250b09c643c47cd4abc18e3843c (diff) | |
| download | invidious-920785631bf6a37583532af09b4492f6ed3f95f2.tar.gz invidious-920785631bf6a37583532af09b4492f6ed3f95f2.tar.bz2 invidious-920785631bf6a37583532af09b4492f6ed3f95f2.zip | |
Merge pull request #1657 from jksladjflkjsadflkjsadf/fixsetinterval
fix incorrect use of setinterval in js
Diffstat (limited to 'assets/js/watch.js')
| -rw-r--r-- | assets/js/watch.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/js/watch.js b/assets/js/watch.js index 05530f3d..eb493bf3 100644 --- a/assets/js/watch.js +++ b/assets/js/watch.js @@ -272,7 +272,7 @@ function get_reddit_comments(retries) { xhr.onerror = function () { console.log('Pulling comments failed... ' + retries + '/5'); - setInterval(function () { get_reddit_comments(retries - 1) }, 1000); + setTimeout(function () { get_reddit_comments(retries - 1) }, 1000); } xhr.ontimeout = function () { @@ -346,7 +346,7 @@ function get_youtube_comments(retries) { comments.innerHTML = '<h3 style="text-align:center"><div class="loading"><i class="icon ion-ios-refresh"></i></div></h3>'; console.log('Pulling comments failed... ' + retries + '/5'); - setInterval(function () { get_youtube_comments(retries - 1) }, 1000); + setTimeout(function () { get_youtube_comments(retries - 1) }, 1000); } xhr.ontimeout = function () { |
