0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-27 06:03:52 +01:00
This commit is contained in:
2025-09-01 12:19:15 +02:00
parent 8b2a25adf5
commit 103c6d3ae6

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(" - ")