Skip to content

Commit

Permalink
Fixes logging out issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lonkelle committed Jun 24, 2023
1 parent 72832c5 commit 4ad482a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion AltServer/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ private extension AppDelegate
private extension AppDelegate {
private func setupLoginMenuItem() {
logInMenuItem.isEnabled = true
logInMenuItem.title = "Apple ID Login..."
do {
let email = try Keychain.shared.getValue(for: .appleIDEmail)
//logInMenuItem.isHidden = false
Expand All @@ -332,7 +333,7 @@ private extension AppDelegate {
} catch {
//logInMenuItem.isHidden = false
logInMenuItem.action = #selector(loginToAppleID)
print("Error getting stored AppleID credentials: \(error)")
print("Error getting stored Apple ID credentials: \(error)")
}
}

Expand Down

0 comments on commit 4ad482a

Please sign in to comment.