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 94f0872 commit b292140Copy full SHA for b292140
Firebase/InstanceID/CHANGELOG.md
@@ -1,5 +1,6 @@
1
# 2020-03 -- 4.3.3
2
- [fixed] Fixed provisioning profile location for catalyst. (#5048)
3
+- [fixed] Fixed crash when passing a nil handler to deleteToken request. (#5247)
4
- [changed] Remove obsolete logic to improve performance and reduce keychain operations. (#5211, #5237)
5
6
# 2020-02 -- 4.3.2
Firebase/InstanceID/FIRInstanceID.m
@@ -367,6 +367,7 @@ - (void)deleteTokenWithAuthorizedEntity:(NSString *)authorizedEntity
367
if (!handler) {
368
FIRInstanceIDLoggerError(kFIRInstanceIDMessageCodeInstanceID001,
369
kFIRInstanceIDInvalidNilHandlerError);
370
+ return;
371
}
372
373
// comparing enums to ints directly throws a warning
0 commit comments