Skip to content

Commit

Permalink
fix: Improve readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Lnamw committed Apr 23, 2024
1 parent afcba90 commit 8bce084
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MailCore/Utils/Logging.swift
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ public enum Logging {
#if DEBUG || TEST
return nil
#else
if !UserDefaults.shared.isSentryAuthorized {
return nil
} else {
if UserDefaults.shared.isSentryAuthorized {
return event
} else {
return nil
}
#endif
}
Expand Down

0 comments on commit 8bce084

Please sign in to comment.