diff options
| author | meow <woem> | 2022-04-20 12:13:16 +0300 |
|---|---|---|
| committer | meow <woem> | 2022-04-25 10:14:24 +0300 |
| commit | 38ef0b10e79232de1c6fa2062d9983e4a944f6be (patch) | |
| tree | f56d155efafe0cace0e5b98ed905961dd85832bd /assets/js/community.js | |
| parent | c72d3c4a0ea9329fa455d5c066aff598c307d04d (diff) | |
| download | invidious-38ef0b10e79232de1c6fa2062d9983e4a944f6be.tar.gz invidious-38ef0b10e79232de1c6fa2062d9983e4a944f6be.tar.bz2 invidious-38ef0b10e79232de1c6fa2062d9983e4a944f6be.zip | |
eqeqeq
Diffstat (limited to '')
| -rw-r--r-- | assets/js/community.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/js/community.js b/assets/js/community.js index 5bc1ee2e..eebaf5d8 100644 --- a/assets/js/community.js +++ b/assets/js/community.js @@ -64,8 +64,8 @@ function get_youtube_replies(target, load_more) { xhr.open('GET', url, true); xhr.onreadystatechange = function () { - if (xhr.readyState == 4) { - if (xhr.status == 200) { + if (xhr.readyState === 4) { + if (xhr.status === 200) { if (load_more) { body = body.parentNode.parentNode; body.removeChild(body.lastElementChild); |
