Restore DefaultLanguage case-sensitiveness by reverting commit bfeb8ef6b3.

Language code should be case-sensitive. Fix #1946. Supersedes #1947.
This commit is contained in:
Deluan 2022-10-18 11:44:16 -04:00
parent af5c2b5a42
commit aab4925dfc
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ var _ = Describe("serveIndex", func() {
})
It("sets the defaultLanguage", func() {
conf.Server.DefaultLanguage = "PT"
conf.Server.DefaultLanguage = "pt"
r := httptest.NewRequest("GET", "/index.html", nil)
w := httptest.NewRecorder()