Skip to content

Commit 163dea7

Browse files
committed
fix: change default notification level to 'success' for Apprise integration
1 parent 1a051bd commit 163dea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/config/app_config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ type AppConfig struct {
3737
AppriseApiURL HttpUrl `env:"APPRISE_API_URL" validate:"httpUrl"` // AppriseApiURL is the URL of the Apprise notification service
3838
AppriseNotifyUrls string `env:"APPRISE_NOTIFY_URLS"` // AppriseNotifyUrls is a comma-separated list of URLs to notify via the Apprise notification service
3939
AppriseNotifyUrlsFile string `env:"APPRISE_NOTIFY_URLS_FILE,file"` // AppriseNotifyUrlsFile is the file containing the AppriseNotifyUrls
40-
AppriseNotifyLevel string `env:"APPRISE_NOTIFY_LEVEL,notEmpty" envDefault:"info"` // AppriseNotifyLevel is the level of notifications to send via the Apprise notification service
40+
AppriseNotifyLevel string `env:"APPRISE_NOTIFY_LEVEL,notEmpty" envDefault:"success"` // AppriseNotifyLevel is the level of notifications to send via the Apprise notification service
4141
}
4242

4343
// GetAppConfig returns the configuration.

0 commit comments

Comments
 (0)