Merge pull request #5116 from McNetic/zipstreamer

Always enable Zip64 extension for zipstreamer
This commit is contained in:
Joas Schilling 2017-05-30 12:37:02 +02:00 committed by GitHub
commit 1d227d83c0
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class Streamer {
if ($request->isUserAgent($this->preferTarFor)) {
$this->streamerInstance = new TarStreamer();
} else {
$this->streamerInstance = new ZipStreamer(['zip64' => PHP_INT_SIZE !== 4]);
$this->streamerInstance = new ZipStreamer();
}
}