From c56fc76d6a8abf5f0aad1e5d0bbec79ece2e2065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Tue, 14 Dec 2021 01:19:30 +0100 Subject: [PATCH] Change default for notify_discord --- discord_rss_bot/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord_rss_bot/main.py b/discord_rss_bot/main.py index abf678c..1390e6c 100644 --- a/discord_rss_bot/main.py +++ b/discord_rss_bot/main.py @@ -16,7 +16,7 @@ hook = Webhook(Settings.webhook_url) @app.command() def add( feed_url: str = typer.Argument(..., help="RSS or Atom feed URL."), - notify_discord: bool = typer.Option(False, help="Send message to Discord."), + notify_discord: bool = typer.Option(True, help="Send message to Discord."), ) -> None: """Add a feed to the database