1
Fork 0

Update db updater

This commit is contained in:
prescientmoon 2025-04-13 17:27:41 +02:00
parent c83de766f2
commit d6b15ed45f
Signed by: prescientmoon
SSH key fingerprint: SHA256:UUF9JT2s8Xfyv76b8ZuVL7XrmimH4o49p4b+iexbVH4

View file

@ -64,7 +64,7 @@ for song_id, ratings in json_data.items():
SET {rating_column}=?
WHERE song_id=?
""",
(rating_value, song_id),
(rating_value * 10, song_id),
)
conn.commit()