mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Store uncompressed files in zip
This commit is contained in:
parent
2c370cae28
commit
9a1133601a
1 changed files with 5 additions and 1 deletions
|
@ -44,7 +44,11 @@ func (a *archiver) Zip(ctx context.Context, id string, out io.Writer) error {
|
|||
|
||||
func (a *archiver) addFileToZip(ctx context.Context, z *zip.Writer, mf model.MediaFile) error {
|
||||
_, file := filepath.Split(mf.Path)
|
||||
w, err := z.Create(fmt.Sprintf("%s/%s", mf.Album, file))
|
||||
w, err := z.CreateHeader(&zip.FileHeader{
|
||||
Name: fmt.Sprintf("%s/%s", mf.Album, file),
|
||||
Modified: mf.UpdatedAt,
|
||||
Method: zip.Store,
|
||||
})
|
||||
if err != nil {
|
||||
log.Error(ctx, "Error creating zip entry", "file", mf.Path, err)
|
||||
return err
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue