diff --git a/t_modules/t_main.py b/t_modules/t_main.py index e4457bac8..24869e537 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...") @@ -7469,7 +7469,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 != "": @@ -7532,7 +7532,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 @@ -7580,7 +7580,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