Add option for tracks that won’t be scrobbled

master
trémeur 5 months ago
parent e6d14a0e50
commit 3d283da0f7

@ -27,6 +27,9 @@ def scrobble(thealbum):
else: else:
theartist = album["artist"] theartist = album["artist"]
thetrack = item thetrack = item
if theartist == "noscrob":
print("Skipped " + thetrack)
else:
last_api_call = network.scrobble(theartist,thetrack,int(time.time())) last_api_call = network.scrobble(theartist,thetrack,int(time.time()))
print("Scrobbled " + item) print("Scrobbled " + item)
countdown(tracklist[item]) countdown(tracklist[item])

Loading…
Cancel
Save