From f0b32961c1c289859db64e070a967d51d278f04d Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 6 Nov 2024 09:00:21 -0500 Subject: [PATCH] [scrobbles] Can't just use subtitle for notifications --- vrobbler/apps/scrobbles/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 6e29632..adbc76b 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -1191,8 +1191,6 @@ class Scrobble(TimeStampedModel): notify_str = f"{scrobble.media_obj}" if scrobble.log and scrobble.log.get("description"): notify_str += f" - {scrobble.log.get('description')}" - if scrobble.media_obj.subtitle: - notify_str += f" - {scrobble.media_obj.subtitle}" requests.post( profile.ntfy_url, data=notify_str.encode(encoding="utf-8"),