1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-05 19:18:19 +00:00

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

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;