From 1d159df1243cc3b4f34dfbced1488ccd25ac400c Mon Sep 17 00:00:00 2001 From: Taiko2k Date: Fri, 25 Aug 2023 02:42:51 +1200 Subject: [PATCH] Dont fall back to album artist on scrobble --- t_modules/t_main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t_modules/t_main.py b/t_modules/t_main.py index 13e05bfa6..d5ec17aa0 100644 --- a/t_modules/t_main.py +++ b/t_modules/t_main.py @@ -7245,7 +7245,7 @@ def scrobble(self, track_object, timestamp=None): title = track_object.title album = track_object.album - artist = get_artist_strip_feat(track_object) + artist = track_object.artist #get_artist_strip_feat(track_object) album_artist = track_object.album_artist print("submitting scrobble...") @@ -7463,7 +7463,7 @@ def update(self, track_object): title = track_object.title album = track_object.album - artist = get_artist_strip_feat(track_object) + artist = track_object.artist #artist = get_artist_strip_feat(track_object) try: if title != "" and artist != "": @@ -7526,7 +7526,7 @@ def listen_full(self, track_object, time): title = track_object.title album = track_object.album - artist = get_artist_strip_feat(track_object) + artist = track_object.artist #artist = get_artist_strip_feat(track_object) if title == "" or artist == "": return True @@ -7574,7 +7574,7 @@ def listen_playing(self, track_object): show_message("ListenBrains is enabled but there is no token.", "How did this even happen.", mode='error') title = track_object.title album = track_object.album - artist = get_artist_strip_feat(track_object) + artist = track_object.artist #artist = get_artist_strip_feat(track_object) if title == "" or artist == "": return