MBID
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user