From 2ad33ca2c1b5345548931c01432c21c87fd381ff Mon Sep 17 00:00:00 2001 From: Kuba <132459354+KubaPro010@users.noreply.github.com> Date: Sat, 11 Oct 2025 19:09:18 +0200 Subject: [PATCH] symmetry --- modules/rds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rds.py b/modules/rds.py index fc2c5fc..458f72e 100644 --- a/modules/rds.py +++ b/modules/rds.py @@ -57,7 +57,7 @@ def update_rds(track_name: str): prt = rds_base.format(artist, title) rtp = [4] # type 1 rtp.append(prt.find(artist)) # start 1 - rtp.append(len(artist)) # len 1 + rtp.append(len(artist) - 1) # len 1 rtp.append(1) # type 2 rtp.append(prt.find(title)) # start 2 rtp.append(len(title) - 1) # len 2