From ecc26138a79dc4a19d05750219bcdcae35cdcacf Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 15 Mar 2023 14:43:47 -0400 Subject: [PATCH] Add source id message for manuals --- vrobbler/apps/scrobbles/scrobblers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vrobbler/apps/scrobbles/scrobblers.py b/vrobbler/apps/scrobbles/scrobblers.py index 7d2a698..48a5b65 100644 --- a/vrobbler/apps/scrobbles/scrobblers.py +++ b/vrobbler/apps/scrobbles/scrobblers.py @@ -176,6 +176,7 @@ def manual_scrobble_video(imdb_id: str, user_id: int): "timestamp": timezone.now(), "playback_position_seconds": 0, "source": source, + "source_id": "Manually scrobbled from Vrobbler and looked up via IMDB", } return Scrobble.create_or_update(video, user_id, scrobble_dict) @@ -197,6 +198,7 @@ def manual_scrobble_video_game(data_dict: dict, user_id: Optional[int]): "timestamp": timezone.now(), "playback_position_seconds": 0, "source": "Vrobbler", + "source_id": "Manually scrobbled from Vrobbler and looked up via HLTB.com", "long_play_complete": False, }