From db5fa4066443e78566a58360f7bc325b80873dc7 Mon Sep 17 00:00:00 2001 From: Barijaona Ramaholimihaso Date: Mon, 17 Jun 2024 21:22:49 +0300 Subject: [PATCH] Respect updated articles display preference An article should be redisplayed even when it is already marked as read --- Vienna/Sources/Main window/ArticleController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vienna/Sources/Main window/ArticleController.m b/Vienna/Sources/Main window/ArticleController.m index 4f8961d743..1d6bbf48da 100644 --- a/Vienna/Sources/Main window/ArticleController.m +++ b/Vienna/Sources/Main window/ArticleController.m @@ -496,7 +496,7 @@ -(void)reloadArrayOfArticles Article *currentArticle = self.selectedArticle; if (currentArticle == article && [[Preferences standardPreferences] boolForKey:MAPref_CheckForUpdatedArticles] - && currentArticle.revised && !currentArticle.read) + && currentArticle.revised) { [[NSNotificationCenter defaultCenter] postNotificationName:MA_Notify_ArticleViewChange object:nil]; }