From 61cabbee15d7c6f374791c4ae6fdeceef3019be0 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Fri, 21 Oct 2022 01:51:15 +0300 Subject: [PATCH] minor fix... Signed-off-by: Alex A. Naanou --- pwiki/store/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwiki/store/base.js b/pwiki/store/base.js index 8855298..b405df5 100755 --- a/pwiki/store/base.js +++ b/pwiki/store/base.js @@ -1061,7 +1061,7 @@ module.MetaStore = { var stores = await Promise.iter( Object.entries(this.substores ?? {}) .map(function([path, store]){ - return store.paths() + return store.xpaths .iter() .map(function(s){ return pwpath.join(path, s) }) }))