Fixed strip position
This commit is contained in:
parent
a4b707bd88
commit
b9da32b2a2
|
@ -21,7 +21,7 @@ def generateTrackItem(dz, link_id, bitrate, trackAPI=None, albumAPI=None):
|
||||||
link_id = trackAPI['id']
|
link_id = trackAPI['id']
|
||||||
else:
|
else:
|
||||||
raise ISRCnotOnDeezer(f"https://deezer.com/track/{link_id}")
|
raise ISRCnotOnDeezer(f"https://deezer.com/track/{link_id}")
|
||||||
if not str(link_id.strip('-')).isdecimal(): raise InvalidID(f"https://deezer.com/track/{link_id}")
|
if not str(link_id).strip('-').isdecimal(): raise InvalidID(f"https://deezer.com/track/{link_id}")
|
||||||
|
|
||||||
# Get essential track info
|
# Get essential track info
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue