diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2021-02-24 10:38:54 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2021-02-24 10:38:54 +0300 |
| commit | 96182597c41e2e9a79cbf0d98a5eb140cddc72e3 (patch) | |
| tree | 1fe6d1510da63f720e11f2e607b44b928bcf8893 | |
| parent | 9ad5f04e514c13768b594231ca1327b58945f0c3 (diff) | |
fix typo
| -rwxr-xr-x | js/Headlines.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/js/Headlines.js b/js/Headlines.js index 559da8b95..18c7cda2e 100755 --- a/js/Headlines.js +++ b/js/Headlines.js @@ -189,12 +189,11 @@ const Headlines = { } }); - if (feeds.length > 0) + if (feeds.length > 0) { console.log('requesting counters for', feeds); Feeds.requestCounters(feeds); } - ); - + }); }, click: function (event, id, in_body) { in_body = in_body || false; |