Fix BlockListDownloader unzipFrom (#4473)

This commit is contained in:
Cœur 2022-12-28 12:08:48 +08:00 committed by GitHub
parent 84566d42f0
commit ecb04b4cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ BlocklistDownloader* fBLDownloader = nil;
zipinfo.launchPath = @"/usr/bin/zipinfo";
zipinfo.arguments = @[
@"-1", /* just the filename */
file /* source zip file */
file.path /* source zip file */
];
NSPipe* pipe = [[NSPipe alloc] init];
zipinfo.standardOutput = pipe;