From fa62359e341245abd8d9a9f01cc9c1ab328f49f6 Mon Sep 17 00:00:00 2001 From: Jon Date: Wed, 1 Mar 2023 06:44:02 +0000 Subject: [PATCH] lib/util.js: bump schema version --- lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index e49c708..605abae 100644 --- a/lib/util.js +++ b/lib/util.js @@ -34,7 +34,7 @@ const notNullElse = (a, fallback) => a != null && a != undefined ? a : fallback const arrSerializeSort = array => array.filter(Boolean).map((a,i) => a.serialize(i)).sort((a,b) => a.id.localeCompare(b.id)) -const SCHEMA_VERSION = 7 +const SCHEMA_VERSION = 8 const toRadioSongs = songs => ({ "version": SCHEMA_VERSION, songs