From e833fb57dc13453584b3a4e3dbb49aaa089d9863 Mon Sep 17 00:00:00 2001 From: Benex254 Date: Mon, 5 Aug 2024 09:47:05 +0300 Subject: [PATCH] feat: change notification message --- fastanime/cli/commands/anilist/notifier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastanime/cli/commands/anilist/notifier.py b/fastanime/cli/commands/anilist/notifier.py index 3820cb3..6e6b056 100644 --- a/fastanime/cli/commands/anilist/notifier.py +++ b/fastanime/cli/commands/anilist/notifier.py @@ -56,12 +56,12 @@ def notifier(config: Config): else: for notification_ in notifications: anime_episode = notification_["episode"] - title = f"Episode {anime_episode} just aired" anime_title = notification_["media"]["title"][ config.preferred_language ] + title = f"{anime_title} Episode {anime_episode} just aired" # pyright:ignore - message = f"{anime_title}\nBe sure to watch so you are not left out of the loop." + message = "Be sure to watch so you are not left out of the loop." # message = str(textwrap.wrap(message, width=50)) id = notification_["media"]["id"]