mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-04 02:22:09 +01:00
Merge pull request #3714 from nichwall/zip_download_speedup
Change: no compression when downloading library item as zip file
This commit is contained in:
@@ -7,7 +7,7 @@ module.exports.zipDirectoryPipe = (path, filename, res) => {
|
||||
res.attachment(filename)
|
||||
|
||||
const archive = archiver('zip', {
|
||||
zlib: { level: 9 } // Sets the compression level.
|
||||
zlib: { level: 0 } // Sets the compression level.
|
||||
})
|
||||
|
||||
// listen for all archive data to be written
|
||||
@@ -49,4 +49,4 @@ module.exports.zipDirectoryPipe = (path, filename, res) => {
|
||||
|
||||
archive.finalize()
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user