From 8888b42adf0c529001125417423b048b2a011139 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 5 Nov 2024 16:50:35 -0500 Subject: [PATCH] [scrobbles] Actually use notify str --- vrobbler/apps/scrobbles/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/scrobbles/models.py b/vrobbler/apps/scrobbles/models.py index 376c160..aaa915f 100644 --- a/vrobbler/apps/scrobbles/models.py +++ b/vrobbler/apps/scrobbles/models.py @@ -1193,7 +1193,7 @@ class Scrobble(TimeStampedModel): notify_str += f" - {scrobble.log.get('description')}" requests.post( profile.ntfy_url, - data=f"{scrobble.media_obj}".encode(encoding="utf-8"), + data=notify_str.encode(encoding="utf-8"), headers={ "Title": scrobble.media_obj.strings.verb, "Priority": "default",