From 2e18bfbebff75f3b27d6b92901101c1d1960a723 Mon Sep 17 00:00:00 2001 From: pypy Date: Sat, 7 Nov 2020 17:51:03 +0900 Subject: [PATCH] bugfix --- html/src/repository/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/src/repository/config.js b/html/src/repository/config.js index f42bf59c..6584bdb2 100644 --- a/html/src/repository/config.js +++ b/html/src/repository/config.js @@ -44,7 +44,7 @@ async function syncLoop() { 'INSERT OR REPLACE INTO configs (`key`, `value`) VALUES (@key, @value)', { '@key': key, - '@value': sharedRepository.get(key) + '@value': sharedRepository.getString(key) } ); }