form: substitute Jellyfin on success messages

fixes #177
tailwind
Harvey Tindall 2 years ago
parent d81679fbae
commit d8b1f03ac4
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -157,6 +157,11 @@ func (app *appContext) loadConfig() error {
substituteStrings = app.config.Section("jellyfin").Key("substitute_jellyfin_strings").MustString("")
if substituteStrings != "" {
v := app.config.Section("ui").Key("success_message")
v.SetValue(strings.ReplaceAll(v.String(), "Jellyfin", substituteStrings))
}
oldFormLang := app.config.Section("ui").Key("language").MustString("")
if oldFormLang != "" {
app.storage.lang.chosenFormLang = oldFormLang

Loading…
Cancel
Save