This commit is contained in:
2025-09-01 12:19:15 +02:00
parent 8b2a25adf5
commit 103c6d3ae6
+1 -1
View File
@@ -79,7 +79,7 @@ def update_rds(track_name: str):
has_name = True
except KeyError as e:
has_name = False
name = track_name.split(".",1)[0]
name = ".".join(track_name.split(".")[:-1])
if " - " in name:
count = name.count(" - ")