Skip to content

Commit

Permalink
Respect updated articles display preference
Browse files Browse the repository at this point in the history
An article should be redisplayed even when it is already marked as read
  • Loading branch information
barijaona committed Jun 17, 2024
1 parent 6882ae8 commit db5fa40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vienna/Sources/Main window/ArticleController.m
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}
Expand Down

0 comments on commit db5fa40

Please sign in to comment.