Skip to content

Commit c52bb07

Browse files
authored
Merge pull request #79 from Prometee/patch-2
Wrong method signature
2 parents 7d4d5bb + 9674423 commit c52bb07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/RNZipArchive.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ - (dispatch_queue_t)methodQueue {
6363
return dispatch_queue_create("com.mockingbot.ReactNative.ZipArchiveQueue", DISPATCH_QUEUE_SERIAL);
6464
}
6565

66-
- (void)zipArchiveProgressEvent:(NSInteger)loaded total:(NSInteger)total filePath:(NSString *)filePath {
66+
- (void)zipArchiveProgressEvent:(unsigned long long)loaded total:(unsigned long long)total filePath:(NSString *)filePath {
6767
[self.bridge.eventDispatcher sendAppEventWithName:@"zipArchiveProgressEvent" body:@{
6868
@"progress": @((float)loaded / (float)total),
6969
@"filePath": filePath

0 commit comments

Comments
 (0)