This commit is contained in:
pypy
2020-11-08 17:00:47 +09:00
parent 2160995736
commit b710fad188
2 changed files with 1 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ class ConfigRepository extends SharedRepository {
'CREATE TABLE IF NOT EXISTS configs (`key` TEXT PRIMARY KEY, `value` TEXT)'
);
await sqliteService.execute(
(key, value) => sharedRepository.setString(key, value),
([key, value]) => sharedRepository.setString(key, value),
'SELECT `key`, `value` FROM configs'
);
syncLoop();

View File

@@ -565,7 +565,6 @@ import webApiService from './service/webapi.js';
var $app = {
data: {
API,
VRCX,
// 1 = 대시보드랑 손목에 보이는거
// 2 = 항상 화면에 보이는 거
appType: location.href.substr(-1),