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 0c7e658 commit 4d51850Copy full SHA for 4d51850
FirebaseDatabase/CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# v8.7.0
2
+- [fixed] Fixed Firebase App Check token periodic refresh. (#8544)
3
+
4
# v8.5.0
5
- [fixed] FirebaseDatabase `getData()` callbacks are now called on the main thread. (#8247)
6
FirebaseDatabase/Sources/Core/FPersistentConnection.m
@@ -1302,7 +1302,7 @@ - (void)refreshAppCheckToken:(NSString *)token {
1302
}
1303
1304
- (void)sendAppCheckToken:(NSString *)token {
1305
- NSDictionary *requestData = @{kFWPRequestAppCheckToken : self.authToken};
+ NSDictionary *requestData = @{kFWPRequestAppCheckToken : token};
1306
[self sendAction:kFWPRequestActionAppCheck
1307
body:requestData
1308
sensitive:YES
0 commit comments