Put folder pop up menu for add feed in the correct order

This commit is contained in:
Maurice Parker 2019-05-13 11:31:04 -05:00
parent eede1cc7eb
commit 6d5b3884fc
1 changed files with 2 additions and 2 deletions

View File

@ -24,12 +24,12 @@ private extension FolderTreeControllerDelegate {
func childNodesForRootNode(_ node: Node) -> [Node]? {
let accountNodes: [Node] = AccountManager.shared.activeAccounts.map { account in
let accountNodes: [Node] = AccountManager.shared.sortedActiveAccounts.map { account in
let accountNode = Node(representedObject: account, parent: node)
accountNode.canHaveChildNodes = true
return accountNode
}
return accountNodes.sortedAlphabetically()
return accountNodes
}