ux/qmcv2-keys #39

Merged
lsr merged 9 commits from ux/qmcv2-keys into main 2023-07-02 14:55:42 +00:00
Showing only changes of commit 9db5d94a14 - Show all commits

View File

@ -32,7 +32,12 @@ export class DatabaseKeyExtractor {
return null;
}
const keys = db.exec('select file_path, ekey from `audio_file_ekey_table`')[0].values;
const result = db.exec('select file_path, ekey from audio_file_ekey_table');
if (result.length === 0) {
return [];
}
const keys = result[0].values;
return keys.map(([path, ekey]) => ({
// strip dir name
name: getFileName(String(path)),