Fix bug where marking articles unread from timeline contextual menu was marking older articles as read. Fix #435.

This commit is contained in:
Brent Simmons 2018-09-06 08:26:57 -07:00
parent 26cca9e6e9
commit 6656cff7f3

View File

@ -44,7 +44,7 @@ extension TimelineViewController {
guard let articles = articles(from: sender) else { guard let articles = articles(from: sender) else {
return return
} }
markOlderArticlesRead(articles) markArticles(articles, read: false)
} }
@objc func markOlderArticlesReadFromContextualMenu(_ sender: Any?) { @objc func markOlderArticlesReadFromContextualMenu(_ sender: Any?) {