1
0
mirror of https://github.com/kha7iq/pingme.git synced 2025-05-15 22:30:11 -07:00

fix type cast after string conversation

This commit is contained in:
Maik Brenke 2021-06-21 11:55:26 +02:00
parent efac11a3ef
commit 76105ec7ad

View File

@ -82,7 +82,7 @@ All configuration options are also available via environment variables.`,
if errStr != nil {
return errStr
}
telegramSvc.AddReceivers(int64(k))
telegramSvc.AddReceivers(k)
}
notifier.UseServices(telegramSvc)