Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions FirebaseAuth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Unreleased
- [fixed] Fix a `fatalError` unenrolling from MFA. An invalid user token now throws an
`invalidUserToken` error instead of crashing. (#14663)
- [fixed] Fix the parameter from "languageCode" to "lang" in ActionCodeURL (#14664)

# 11.9.0
- [changed] Using reCAPTCHA Enterprise and Firebase Auth requires reCAPTCHA
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAuth/Sources/Swift/ActionCode/ActionCodeURL.swift
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ import Foundation
} else {
continueURL = nil
}
languageCode = queryItems["languageCode"]
languageCode = queryItems["lang"]
}

class func parseURL(_ urlString: String) -> [String: String] {
Expand Down
Loading