don't backtick quote stuff

This commit is contained in:
sentriz
2023-10-19 02:17:39 +01:00
parent d503282faf
commit 95bc919377
6 changed files with 13 additions and 13 deletions

View File

@@ -160,7 +160,7 @@ func (c *Controller) ServeGetAlbumList(r *http.Request) *spec.Response {
q = q.Joins("JOIN album_stars ON albums.id=album_stars.album_id AND album_stars.user_id=?", user.ID)
q = q.Order("right_path")
default:
return spec.NewError(10, "unknown value `%s` for parameter 'type'", v)
return spec.NewError(10, "unknown value %q for parameter 'type'", v)
}
if m := getMusicFolder(c.musicPaths, params); m != "" {