Skip to content

Commit 15cd443

Browse files
committed
AccountStore: Fixing merge issue
1 parent 30ec0f5 commit 15cd443

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Yosemite/Yosemite/Stores/AccountStore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private extension AccountStore {
7373
/// Loads the Account associated with the specified userID (if any!).
7474
///
7575
func loadAccount(userID: Int, onCompletion: @escaping (Account?) -> Void) {
76-
let account = loadStoredAccount(userId: userID)?.toReadOnly()
76+
let account = storageManager.viewStorage.loadAccount(userId: userID)?.toReadOnly()
7777
onCompletion(account)
7878
}
7979
}

0 commit comments

Comments
 (0)