mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
Fix missing extensions in Share downloads.
See https://github.com/navidrome/navidrome/pull/2246#issuecomment-1476996397
This commit is contained in:
parent
6fee744d99
commit
16fc4eb792
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ func (a *archiver) zipMediaFiles(ctx context.Context, id string, format string,
|
||||||
|
|
||||||
func (a *archiver) playlistFilename(mf model.MediaFile, format string, idx int) string {
|
func (a *archiver) playlistFilename(mf model.MediaFile, format string, idx int) string {
|
||||||
ext := mf.Suffix
|
ext := mf.Suffix
|
||||||
if format != "raw" {
|
if format != "" && format != "raw" {
|
||||||
ext = format
|
ext = format
|
||||||
}
|
}
|
||||||
file := fmt.Sprintf("%02d - %s - %s.%s", idx+1, mf.Artist, mf.Title, ext)
|
file := fmt.Sprintf("%02d - %s - %s.%s", idx+1, mf.Artist, mf.Title, ext)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue