From 1836c8c93a60c9dc0f86859bcfd6ef497c6f7dcd Mon Sep 17 00:00:00 2001 From: Pitu Date: Sun, 10 May 2020 21:12:30 +0900 Subject: [PATCH] Small fix for migration script, dont import deleted albums --- src/api/databaseMigration.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/api/databaseMigration.js b/src/api/databaseMigration.js index 253ccbd..75611f3 100644 --- a/src/api/databaseMigration.js +++ b/src/api/databaseMigration.js @@ -63,6 +63,7 @@ const start = async () => { const albums = await oldDb.table('albums'); for (const album of albums) { + if (!album.enabled || album.enabled == 0) continue; const now = moment.utc().toDate(); const albumToInsert = { id: album.id, @@ -77,7 +78,7 @@ const start = async () => { albumId: album.id, identifier: album.identifier, views: 0, - enabled: album.enabled == 1 ? true : false, + enabled: true, enableDownload: true, createdAt: now, editedAt: now