Skip to content

Commit

Permalink
Fixed bug #79 (#85)
Browse files Browse the repository at this point in the history
Replace `UZKCompressionMethodDefault` with `method` in remaining `writeData` overloads, missed in PR #81
  • Loading branch information
denis-ionov authored and abbeycode committed Jun 20, 2019
1 parent 1683dea commit 8c6f740
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/UZKArchive.m
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ - (BOOL)writeData:(NSData *)data
return [self writeData:data
filePath:filePath
fileDate:fileDate
compressionMethod:UZKCompressionMethodDefault
compressionMethod:method
password:password
overwrite:YES
error:error];
Expand Down Expand Up @@ -1156,7 +1156,7 @@ - (BOOL)writeData:(NSData *)data
return [self writeData:data
filePath:filePath
fileDate:fileDate
compressionMethod:UZKCompressionMethodDefault
compressionMethod:method
password:password
overwrite:overwrite
progress:nil
Expand Down

0 comments on commit 8c6f740

Please sign in to comment.