diff --git a/lib/private/Streamer.php b/lib/private/Streamer.php index 51c2c923c2352..ffa626b48d809 100644 --- a/lib/private/Streamer.php +++ b/lib/private/Streamer.php @@ -68,7 +68,7 @@ public function __construct(IRequest $request, int $size, int $numberOfFiles){ * larger than 4GiB), but it should not happen in the real world. */ if ($size < 4 * 1000 * 1000 * 1000 && $numberOfFiles < 65536) { - $this->streamerInstance = new ZipStreamer(['zip64' => false]); + $this->streamerInstance = new ZipStreamer(['zip64' => true]); } else if ($request->isUserAgent($this->preferTarFor)) { $this->streamerInstance = new TarStreamer(); } else {