Fix(http notify): enable if Url is not empty

This commit is contained in:
Delweng Zheng 2016-07-11 09:13:36 +08:00
Родитель a91376a745
Коммит c78ffb45e8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -36,7 +36,7 @@ type NotifyCenter struct {
func LoadNotifiers(app *ApplicationContext) error {
notifiers := []notifier.Notifier{}
if app.Config.Httpnotifier.Enable {
if app.Config.Httpnotifier.Url != "" {
if httpNotifier, err := NewHttpNotifier(app); err == nil {
notifiers = append(notifiers, httpNotifier)
}