We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a86f19 commit 2d79f91Copy full SHA for 2d79f91
FirebaseAuth/CHANGELOG.md
@@ -1,6 +1,7 @@
1
# Unreleased
2
- [fixed] Fix a `fatalError` unenrolling from MFA. An invalid user token now throws an
3
`invalidUserToken` error instead of crashing. (#14663)
4
+- [fixed] Fix the parameter from "languageCode" to "lang" in ActionCodeURL (#14664)
5
6
# 11.9.0
7
- [changed] Using reCAPTCHA Enterprise and Firebase Auth requires reCAPTCHA
FirebaseAuth/Sources/Swift/ActionCode/ActionCodeURL.swift
@@ -56,7 +56,7 @@ import Foundation
56
} else {
57
continueURL = nil
58
}
59
- languageCode = queryItems["languageCode"]
+ languageCode = queryItems["lang"]
60
61
62
class func parseURL(_ urlString: String) -> [String: String] {
0 commit comments