Skip expanded nodes so that next unread goes to the correct timeline.

This commit is contained in:
Maurice Parker 2019-04-23 04:41:44 -05:00
parent e1b031e6db
commit 6d3c8618dd
1 changed files with 4 additions and 0 deletions

View File

@ -510,6 +510,10 @@ private extension NavigationStateController {
return true
}
if expandedNodes.contains(node) {
continue
}
if unreadCountProvider.unreadCount > 0 {
currentMasterIndexPath = nextIndexPath
return true