Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiko2k committed Aug 25, 2023
2 parents ef5fbb2 + 1d159df commit 2215a09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down Expand Up @@ -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 != "":
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2215a09

Please sign in to comment.