diff options
Diffstat (limited to 'lib/private/files.php')
-rw-r--r-- | lib/private/files.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/private/files.php b/lib/private/files.php index 0172f1ca6af..658e708e5de 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -40,9 +40,6 @@ * */ -// TODO: get rid of this using proper composer packages -require_once 'mcnetic/phpzipstreamer/ZipStreamer.php'; - use OC\Lock\NoopLockingProvider; use OCP\Lock\ILockingProvider; @@ -121,7 +118,7 @@ class OC_Files { if ($get_type === self::FILE) { $zip = false; } else { - $zip = new ZipStreamer(false); + $zip = new ZipStreamer\ZipStreamer(); } OC_Util::obEnd(); |