mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
bugfix (closes #94)
This commit is contained in:
@@ -3295,7 +3295,6 @@ import gameLogService from './service/gamelog.js'
|
|||||||
el: '#x-app',
|
el: '#x-app',
|
||||||
async mounted() {
|
async mounted() {
|
||||||
this.checkAppVersion();
|
this.checkAppVersion();
|
||||||
await gameLogService.reset();
|
|
||||||
API.$on('SHOW_WORLD_DIALOG', (tag) => this.showWorldDialog(tag));
|
API.$on('SHOW_WORLD_DIALOG', (tag) => this.showWorldDialog(tag));
|
||||||
API.$on('SHOW_LAUNCH_DIALOG', (tag) => this.showLaunchDialog(tag));
|
API.$on('SHOW_LAUNCH_DIALOG', (tag) => this.showLaunchDialog(tag));
|
||||||
this.updateLoop();
|
this.updateLoop();
|
||||||
@@ -3591,6 +3590,7 @@ import gameLogService from './service/gamelog.js'
|
|||||||
text: `Hello there, <strong>${escapeTag(args.ref.displayName)}</strong>!`
|
text: `Hello there, <strong>${escapeTag(args.ref.displayName)}</strong>!`
|
||||||
}).show();
|
}).show();
|
||||||
$app.$refs.menu.activeIndex = 'feed';
|
$app.$refs.menu.activeIndex = 'feed';
|
||||||
|
$app.resetGameLog();
|
||||||
});
|
});
|
||||||
|
|
||||||
$app.data.loginForm = {
|
$app.data.loginForm = {
|
||||||
@@ -4482,6 +4482,7 @@ import gameLogService from './service/gamelog.js'
|
|||||||
$app.methods.resetGameLog = async function () {
|
$app.methods.resetGameLog = async function () {
|
||||||
await gameLogService.reset();
|
await gameLogService.reset();
|
||||||
this.gameLogTable.data = [];
|
this.gameLogTable.data = [];
|
||||||
|
this.lastLocation = '';
|
||||||
};
|
};
|
||||||
|
|
||||||
$app.methods.updateGameLogLoop = async function () {
|
$app.methods.updateGameLogLoop = async function () {
|
||||||
|
|||||||
Reference in New Issue
Block a user