From 9988847fbafa3d31bdce0e7787fd91b7d94dd0a1 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Tue, 20 Aug 2019 05:46:44 -0500 Subject: [PATCH] Fix bug where mark older than caused all articles in the timeline to be marked as read --- iOS/AppCoordinator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iOS/AppCoordinator.swift b/iOS/AppCoordinator.swift index f999afa8d..514e6260e 100644 --- a/iOS/AppCoordinator.swift +++ b/iOS/AppCoordinator.swift @@ -558,7 +558,7 @@ class AppCoordinator: NSObject, UndoableCommandRunner { if articlesToMark.isEmpty { return } - markAllAsRead(articles) + markAllAsRead(articlesToMark) } func toggleReadForCurrentArticle() {