Skip expanded nodes so that next unread goes to the correct timeline.
This commit is contained in:
parent
e1b031e6db
commit
6d3c8618dd
|
@ -510,6 +510,10 @@ private extension NavigationStateController {
|
|||
return true
|
||||
}
|
||||
|
||||
if expandedNodes.contains(node) {
|
||||
continue
|
||||
}
|
||||
|
||||
if unreadCountProvider.unreadCount > 0 {
|
||||
currentMasterIndexPath = nextIndexPath
|
||||
return true
|
||||
|
|
Loading…
Reference in New Issue