Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Jul 19, 2024
1 parent c497d1a commit 9fdb607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FirebaseAuth/Sources/Swift/Auth/Auth.swift
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ extension Auth: AuthInterop {
/// - Parameter link: The email sign-in link.
/// - Returns: `true` when the link passed matches the expected format of an email sign-in link.
@objc open func isSignIn(withEmailLink link: String) -> Bool {
guard link.count > 0 else {
guard !link.isEmpty else {
return false
}
let queryItems = getQueryItems(link)
Expand Down

0 comments on commit 9fdb607

Please sign in to comment.