summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorwn_ <[email protected]>2018-03-10 07:38:23 -0600
committerwn_ <[email protected]>2018-03-10 07:38:23 -0600
commita30f862de452c05ef2c89361675449e93071b951 (patch)
tree6207b74b5c2273c28f497ea04f13bd93b82e0752 /js
parentad04bbf81dc01236422e0af8a07236ad7921453a (diff)
strict js: fix catchupBatchedArticles
This addresses the "Unread not removed from row" issue.
Diffstat (limited to 'js')
-rwxr-xr-xjs/viewfeed.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/viewfeed.js b/js/viewfeed.js
index a00ac6f66..0c15a23b9 100755
--- a/js/viewfeed.js
+++ b/js/viewfeed.js
@@ -1259,7 +1259,7 @@ function catchupBatchedArticles() {
_catchup_request_sent = false;
- reply = JSON.parse(transport.responseText);
+ var reply = JSON.parse(transport.responseText);
var batch = reply.ids;
batch.each(function (id) {