mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fix index of songs in downloaded playlist
This commit is contained in:
parent
6bd4c0f6bf
commit
bed2f017af
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ func (a *archiver) createHeader(idx int, mf model.MediaFile) *zip.FileHeader {
|
||||||
func (a *archiver) createPlaylistHeader(idx int, mf model.MediaFile) *zip.FileHeader {
|
func (a *archiver) createPlaylistHeader(idx int, mf model.MediaFile) *zip.FileHeader {
|
||||||
_, file := filepath.Split(mf.Path)
|
_, file := filepath.Split(mf.Path)
|
||||||
return &zip.FileHeader{
|
return &zip.FileHeader{
|
||||||
Name: fmt.Sprintf("%d - %s-%s", idx, mf.AlbumArtist, file),
|
Name: fmt.Sprintf("%d - %s - %s", idx+1, mf.AlbumArtist, file),
|
||||||
Modified: mf.UpdatedAt,
|
Modified: mf.UpdatedAt,
|
||||||
Method: zip.Store,
|
Method: zip.Store,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue