Skip to content

Commit 7dcf7e7

Browse files
authored
Fixed analyze issue introduced in Xcode 12.5 (#8208)
1 parent 85ca3cb commit 7dcf7e7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

FirebaseDynamicLinks/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v8.2.0
2+
- [fixed] Fixed analyze issue introduced in Xcode 12.5. (#8208)
3+
14
# v8.0.0
25
- [fixed] Fixed crashes on simulators targeting below iOS14 on Apple Silicon. (#7989)
36

FirebaseDynamicLinks/Sources/FIRDynamicLinkNetworking.m

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,9 @@ - (void)retrievePendingDynamicLinkWithIOSVersion:(NSString *)IOSVersion
228228
requestBody[@"uniqueMatchLinkToCheck"] = uniqueMatchLinkToCheck.absoluteString;
229229
}
230230

231-
FIRDLNetworkingParserBlock responseParserBlock = ^NSDictionary *_Nullable(
232-
NSString *requestURLString, NSData *data, NSString **matchMessagePtr, NSError **errorPtr) {
231+
FIRDLNetworkingParserBlock responseParserBlock =
232+
^NSDictionary *_Nullable(NSString *requestURLString, NSData *data, NSString **matchMessagePtr,
233+
NSError **_Nonnull errorPtr) {
233234
NSError *serializationError;
234235
NSDictionary *result = [NSJSONSerialization JSONObjectWithData:data
235236
options:0

0 commit comments

Comments
 (0)