mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 22:46:06 +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)'
|
'CREATE TABLE IF NOT EXISTS configs (`key` TEXT PRIMARY KEY, `value` TEXT)'
|
||||||
);
|
);
|
||||||
await sqliteService.execute(
|
await sqliteService.execute(
|
||||||
(key, value) => sharedRepository.setString(key, value),
|
([key, value]) => sharedRepository.setString(key, value),
|
||||||
'SELECT `key`, `value` FROM configs'
|
'SELECT `key`, `value` FROM configs'
|
||||||
);
|
);
|
||||||
syncLoop();
|
syncLoop();
|
||||||
|
|||||||
@@ -565,7 +565,6 @@ import webApiService from './service/webapi.js';
|
|||||||
var $app = {
|
var $app = {
|
||||||
data: {
|
data: {
|
||||||
API,
|
API,
|
||||||
VRCX,
|
|
||||||
// 1 = 대시보드랑 손목에 보이는거
|
// 1 = 대시보드랑 손목에 보이는거
|
||||||
// 2 = 항상 화면에 보이는 거
|
// 2 = 항상 화면에 보이는 거
|
||||||
appType: location.href.substr(-1),
|
appType: location.href.substr(-1),
|
||||||
|
|||||||
Reference in New Issue
Block a user