From a2af30b70334cdbbfa51140d5de23a2d6b8429c8 Mon Sep 17 00:00:00 2001 From: SesioN Date: Sat, 24 Oct 2020 14:15:00 +0200 Subject: [PATCH] fix: page sleep (#586) Fixes #594 Ref: #576 --- src/store/model/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/model/index.ts b/src/store/model/index.ts index a9bbafd..4b47fd3 100644 --- a/src/store/model/index.ts +++ b/src/store/model/index.ts @@ -101,7 +101,7 @@ const list = new Map(); for (const storeData of config.store.stores) { if (masterList.has(storeData.name)) { - list.set(storeData.name, {...masterList.get(storeData.name), storeData}); + list.set(storeData.name, {...masterList.get(storeData.name), ...storeData}); } else { const logString = `No store named ${storeData.name}, skipping.`; logger.warn(logString);