fix(notifications): ntfy and shoutrrr enabled check (#1335)

This commit is contained in:
ze0s 2024-01-01 18:07:22 +01:00 committed by GitHub
parent fbabdfb217
commit 7eaf499d66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

View file

@ -109,11 +109,6 @@ func (s *ntfySender) isEnabled() bool {
return false
}
if s.Settings.Token == "" {
s.log.Warn().Msg("ntfy missing application token")
return false
}
return true
}

View file

@ -47,11 +47,6 @@ func (s *shoutrrrSender) isEnabled() bool {
return false
}
if s.Settings.Token == "" {
s.log.Warn().Msg("shoutrrr missing application token")
return false
}
return true
}