Skip to content

Commit

Permalink
[Fix] #225 - 로그인 이슈 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
hyesuuou committed Jan 25, 2024
1 parent b5a9afb commit af76f31
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@ extension AuthViewController {
}

func checkNotificationSettings() {
UNUserNotificationCenter.current().getNotificationSettings { settings in
UNUserNotificationCenter.current().getNotificationSettings { [weak self] settings in
switch settings.authorizationStatus {
case .notDetermined:
self.showNotiDialogView()
self?.showNotiDialogView()
default:
break
self?.presentToHomeViewController()
}
}
}
Expand Down

0 comments on commit af76f31

Please sign in to comment.