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
3 changes: 3 additions & 0 deletions FirebaseDynamicLinks/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v8.2.0
- [fixed] Fixed analyze issue introduced in Xcode 12.5. (#8208)

# v8.0.0
- [fixed] Fixed crashes on simulators targeting below iOS14 on Apple Silicon. (#7989)

Expand Down
5 changes: 3 additions & 2 deletions FirebaseDynamicLinks/Sources/FIRDynamicLinkNetworking.m
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,9 @@ - (void)retrievePendingDynamicLinkWithIOSVersion:(NSString *)IOSVersion
requestBody[@"uniqueMatchLinkToCheck"] = uniqueMatchLinkToCheck.absoluteString;
}

FIRDLNetworkingParserBlock responseParserBlock = ^NSDictionary *_Nullable(
NSString *requestURLString, NSData *data, NSString **matchMessagePtr, NSError **errorPtr) {
FIRDLNetworkingParserBlock responseParserBlock =
^NSDictionary *_Nullable(NSString *requestURLString, NSData *data, NSString **matchMessagePtr,
NSError **_Nonnull errorPtr) {
NSError *serializationError;
NSDictionary *result = [NSJSONSerialization JSONObjectWithData:data
options:0
Expand Down