Make the default account always be first

This commit is contained in:
Maurice Parker 2019-05-01 19:07:44 -05:00
parent 32eb6f6a17
commit ea906de576
1 changed files with 2 additions and 2 deletions

View File

@ -113,13 +113,13 @@ private extension FeedTreeControllerDelegate {
func sortedAccountNodes(_ parent: Node) -> [Node] {
let nodes = AccountManager.shared.accounts.map { (account) -> Node in
let nodes = AccountManager.shared.sortedAccounts.map { (account) -> Node in
let accountNode = parent.existingOrNewChildNode(with: account)
accountNode.canHaveChildNodes = true
accountNode.isGroupItem = true
return accountNode
}
return nodes.sortedAlphabetically()
return nodes
}
func nodeInArrayRepresentingObject(_ nodes: [Node], _ representedObject: AnyObject) -> Node? {