This commit is contained in:
2026-04-14 15:59:02 +02:00
parent d4356e7337
commit 287477753e
4 changed files with 85 additions and 21 deletions

View File

@@ -132,7 +132,7 @@ class SyncManager:
# Sange
songs = []
for row in conn.execute(
"SELECT id, title, artist, album, bpm, duration_sec, file_format "
"SELECT id, title, artist, album, bpm, duration_sec, file_format, mbid "
"FROM songs WHERE file_missing=0"
).fetchall():
songs.append({
@@ -143,6 +143,7 @@ class SyncManager:
"bpm": row["bpm"] or 0,
"duration_sec": row["duration_sec"] or 0,
"file_format": row["file_format"] or "",
"mbid": row["mbid"] or "",
})
# Danse