commit 2c800fa98e17e5f792f7620d7bd4a404a56e61c0
parent 7b52af3365e4c832904ffac23d8d287b5a44854f
Author: Natasha Kerensikova <natacha@instinctive.eu>
Date: Sun, 26 May 2024 10:05:35 +0200
fix: typo in message
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.go b/main.go
@@ -162,7 +162,7 @@ func newsFetch(client *girc.Client, channel string) {
}
encoder := json.NewEncoder(f)
if err = encoder.Encode(newsList); err != nil {
- client.Cmd.Message(channel, "could write newsList")
+ client.Cmd.Message(channel, "could not write newsList")
}
time.Sleep(viper.GetDuration("feeds.frequency"))
}