mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 22:27:31 -04:00
Merge pull request #49035 from nextcloud/jtr/fix-streamer-zip64
This commit is contained in:
commit
7b4a932ed1
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ class Streamer {
|
|||
} elseif ($size > 0 && $size < 4 * 1000 * 1000 * 1000 && $numberOfFiles < 65536) {
|
||||
$this->streamerInstance = new ZipStreamer(['zip64' => false]);
|
||||
} else {
|
||||
$this->streamerInstance = new ZipStreamer(['zip64' => PHP_INT_SIZE !== 4]);
|
||||
$this->streamerInstance = new ZipStreamer(['zip64' => true]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue