mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 06:43:51 +02:00
bugfix
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -565,7 +565,6 @@ import webApiService from './service/webapi.js';
|
||||
var $app = {
|
||||
data: {
|
||||
API,
|
||||
VRCX,
|
||||
// 1 = 대시보드랑 손목에 보이는거
|
||||
// 2 = 항상 화면에 보이는 거
|
||||
appType: location.href.substr(-1),
|
||||
|
||||
Reference in New Issue
Block a user