mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Don't show error when it is nil
This commit is contained in:
parent
c90468b895
commit
cbe3adf987
1 changed files with 3 additions and 1 deletions
|
@ -46,8 +46,10 @@ func Read(filename string) (tags map[string][]string, err error) {
|
||||||
|
|
||||||
if os.IsPermission(fileErr) {
|
if os.IsPermission(fileErr) {
|
||||||
return nil, fmt.Errorf("navidrome does not have permission: %w", fileErr)
|
return nil, fmt.Errorf("navidrome does not have permission: %w", fileErr)
|
||||||
} else {
|
} else if fileErr != nil {
|
||||||
return nil, fmt.Errorf("cannot parse file media file: %w", fileErr)
|
return nil, fmt.Errorf("cannot parse file media file: %w", fileErr)
|
||||||
|
} else {
|
||||||
|
return nil, fmt.Errorf("cannot parse file media file")
|
||||||
}
|
}
|
||||||
case C.TAGLIB_ERR_AUDIO_PROPS:
|
case C.TAGLIB_ERR_AUDIO_PROPS:
|
||||||
return nil, fmt.Errorf("can't get audio properties from file")
|
return nil, fmt.Errorf("can't get audio properties from file")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue