1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-17 01:35:00 +00:00
This commit is contained in:
Jan-Lukas Else 2021-02-27 15:43:04 +01:00
parent 029d4555b2
commit 8a20285029

View File

@ -27,10 +27,12 @@ func sendNotification(text string) {
if err := saveNotification(n); err != nil {
log.Println("Failed to save notification:", err.Error())
}
if appConfig.Notifications.Telegram.Enabled {
err := sendTelegramMessage(n.Text, "", appConfig.Notifications.Telegram.BotToken, appConfig.Notifications.Telegram.ChatID)
if err != nil {
log.Println("Failed to send Telegram notification:", err.Error())
if an := appConfig.Notifications; an != nil {
if tg := an.Telegram; tg != nil && tg.Enabled {
err := sendTelegramMessage(n.Text, "", tg.BotToken, tg.ChatID)
if err != nil {
log.Println("Failed to send Telegram notification:", err.Error())
}
}
}
}