Fix next unread menu option when in fullscreen.

This commit is contained in:
Maurice Parker 2019-11-29 13:26:14 -06:00
parent 5373be508a
commit d62ff04c64
1 changed files with 1 additions and 1 deletions

View File

@ -610,7 +610,7 @@ private extension ArticleViewController {
guard coordinator.isAnyUnreadAvailable else { return nil }
let title = NSLocalizedString("Next Unread Article", comment: "Next Unread Article")
return UIAction(title: title, image: AppAssets.nextUnreadArticleImage) { [weak self] action in
self?.coordinator.selectNextArticle()
self?.coordinator.selectNextUnread()
}
}