refactor!: change config structure to be more readable

This commit is contained in:
Noah 2025-10-13 17:02:20 +02:00
parent f17601c470
commit 038d375ae7
No known key found for this signature in database
GPG key ID: D2A7E2C8F77E0430
7 changed files with 31 additions and 22 deletions

View file

@ -69,9 +69,9 @@ func watcher(bot *tgbotapi.BotAPI, steamID uint64, sleeptime time.Duration) {
"<blockquote>" + comment.Text + "</blockquote>",
}
if config.BotConfig.TranslateEnabled {
if config.BotConfig.Translate.Enabled {
translatedText, translatedTextLanguage, err := deepl.Translate(comment.Text)
if translatedTextLanguage == config.BotConfig.TranslateLanguage {
if translatedTextLanguage == config.BotConfig.Translate.Language {
continue
}
if err != nil {