1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-24 08:22:18 +02:00

Requested Changes

This commit is contained in:
KrishanBhalla 2021-01-31 12:14:48 +00:00
parent 742d127319
commit b07e71dade
3 changed files with 4 additions and 5 deletions

View File

@ -15,8 +15,7 @@ type Notify struct {
// ErrSendNotification signals that the notifier failed to send a notification.
var ErrSendNotification = errors.New("send notification")
// New returns a new instance of Notify. Defaulting to being not disabled and using the pseudo notification
// service under the hood.
// New returns a new instance of Notify. Defaulting to being not disabled
func New() *Notify {
notifier := &Notify{
Disabled: defaultDisabled,

View File

@ -36,7 +36,8 @@ func New(apiToken string) (*Telegram, error) {
// a given message to all those chats.
func (t *Telegram) AddReceivers(chatIDs ...string) {
for _, v := range chatIDs {
if chatID, err := strconv.ParseInt(v, 10, 64); err != nil {
chatID, err := strconv.ParseInt(v, 10, 64)
if err != nil {
t.chatIDs = append(t.chatIDs, chatID)
}
}

3
use.go
View File

@ -1,7 +1,6 @@
package notify
// useService adds a given service to the notifiers services list. If the list still contains
// a pseudo service we remove it before adding the 'real' service.
// useService adds a given service to the notifiers services list.
func (n *Notify) useService(service Notifier) {
if service == nil {
return