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.
2 parents 7d4d5bb + 9674423 commit c52bb07Copy full SHA for c52bb07
ios/RNZipArchive.m
@@ -63,7 +63,7 @@ - (dispatch_queue_t)methodQueue {
63
return dispatch_queue_create("com.mockingbot.ReactNative.ZipArchiveQueue", DISPATCH_QUEUE_SERIAL);
64
}
65
66
-- (void)zipArchiveProgressEvent:(NSInteger)loaded total:(NSInteger)total filePath:(NSString *)filePath {
+- (void)zipArchiveProgressEvent:(unsigned long long)loaded total:(unsigned long long)total filePath:(NSString *)filePath {
67
[self.bridge.eventDispatcher sendAppEventWithName:@"zipArchiveProgressEvent" body:@{
68
@"progress": @((float)loaded / (float)total),
69
@"filePath": filePath
0 commit comments