mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 13:37:38 +03:00
DefaultLanguage is now case-insensitive
This commit is contained in:
parent
ba28e9a109
commit
bfeb8ef6b3
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ func serveIndex(ds model.DataStore, fs fs.FS) http.HandlerFunc {
|
||||||
"enableFavourites": conf.Server.EnableFavourites,
|
"enableFavourites": conf.Server.EnableFavourites,
|
||||||
"enableStarRating": conf.Server.EnableStarRating,
|
"enableStarRating": conf.Server.EnableStarRating,
|
||||||
"defaultTheme": conf.Server.DefaultTheme,
|
"defaultTheme": conf.Server.DefaultTheme,
|
||||||
"defaultLanguage": conf.Server.DefaultLanguage,
|
"defaultLanguage": strings.ToLower(conf.Server.DefaultLanguage),
|
||||||
"enableCoverAnimation": conf.Server.EnableCoverAnimation,
|
"enableCoverAnimation": conf.Server.EnableCoverAnimation,
|
||||||
"gaTrackingId": conf.Server.GATrackingID,
|
"gaTrackingId": conf.Server.GATrackingID,
|
||||||
"losslessFormats": strings.ToUpper(strings.Join(consts.LosslessFormats, ",")),
|
"losslessFormats": strings.ToUpper(strings.Join(consts.LosslessFormats, ",")),
|
||||||
|
|
|
@ -160,7 +160,7 @@ var _ = Describe("serveIndex", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("sets the defaultLanguage", func() {
|
It("sets the defaultLanguage", func() {
|
||||||
conf.Server.DefaultLanguage = "pt"
|
conf.Server.DefaultLanguage = "PT"
|
||||||
r := httptest.NewRequest("GET", "/index.html", nil)
|
r := httptest.NewRequest("GET", "/index.html", nil)
|
||||||
w := httptest.NewRecorder()
|
w := httptest.NewRecorder()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue