From ecb04b4cb113bc1aa14d5aca37f5d0f081d601a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C5=93ur?= Date: Wed, 28 Dec 2022 12:08:48 +0800 Subject: [PATCH] Fix BlockListDownloader unzipFrom (#4473) --- macosx/BlocklistDownloader.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/BlocklistDownloader.mm b/macosx/BlocklistDownloader.mm index 26e7079b3..b7f945f40 100644 --- a/macosx/BlocklistDownloader.mm +++ b/macosx/BlocklistDownloader.mm @@ -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;