We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NSNull
nil
type
readAsDataURL
1 parent 65575e8 commit 99ab845Copy full SHA for 99ab845
packages/react-native/Libraries/Blob/RCTFileReaderModule.mm
@@ -72,9 +72,10 @@ @implementation RCTFileReaderModule
72
nil);
73
} else {
74
NSString *type = [RCTConvert NSString:blob[@"type"]];
75
- NSString *text = [NSString stringWithFormat:@"data:%@;base64,%@",
76
- type != nil && [type length] > 0 ? type : @"application/octet-stream",
77
- [data base64EncodedStringWithOptions:0]];
+ NSString *text = [NSString
+ stringWithFormat:@"data:%@;base64,%@",
+ ![type isEqual:[NSNull null]] && [type length] > 0 ? type : @"application/octet-stream",
78
+ [data base64EncodedStringWithOptions:0]];
79
80
resolve(text);
81
}
0 commit comments