Chore: linter complaints

This commit is contained in:
Grail Finder
2025-11-19 12:51:22 +03:00
parent 25b2e2f592
commit a45120b831
4 changed files with 24 additions and 14 deletions

4
tui.go
View File

@@ -825,7 +825,9 @@ func init() {
if err != nil {
msg := "failed to inference user speech; error:" + err.Error()
logger.Error(msg)
notifyUser("stt error", msg)
if err := notifyUser("stt error", msg); err != nil {
logger.Error("failed to notify user", "error", err)
}
return nil
}
if userSpeech != "" {