This commit is contained in:
pypy
2020-11-07 17:51:03 +09:00
parent 547c978dab
commit 2e18bfbebf
+1 -1
View File
@@ -44,7 +44,7 @@ async function syncLoop() {
'INSERT OR REPLACE INTO configs (`key`, `value`) VALUES (@key, @value)', 'INSERT OR REPLACE INTO configs (`key`, `value`) VALUES (@key, @value)',
{ {
'@key': key, '@key': key,
'@value': sharedRepository.get(key) '@value': sharedRepository.getString(key)
} }
); );
} }