mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-07 06:27:36 +03:00
Fixing Build/lint error: "non-constant format string in call to fmt.Errorf (govet)" (#3198)
* Fixing " non-constant format string in call to fmt.Errorf (govet)" * Its a string, not an int; read better.
This commit is contained in:
parent
c4bd0e67fa
commit
723f01d98c
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ func (pd *Queue) Shuffle() {
|
||||||
var err error
|
var err error
|
||||||
pd.Index, err = pd.getMediaFileIndexByID(backupID)
|
pd.Index, err = pd.getMediaFileIndexByID(backupID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("Could not find ID while shuffling: " + backupID)
|
log.Error("Could not find ID while shuffling: %s", backupID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue