Small fixes

This commit is contained in:
Natsumi
2021-11-20 00:21:27 +13:00
parent 81db11f848
commit 69a40342e2
2 changed files with 6 additions and 6 deletions

View File

@@ -7542,6 +7542,11 @@ speechSynthesis.getVoices();
$app.methods.addGameLog = function (entry) {
this.gameLogSessionTable.push(entry);
this.updateSharedFeed(false);
if (entry.type === 'VideoPlay') {
// event time can be before last gameLog entry
this.updateSharedFeed(true);
}
if (
entry.type === 'LocationDestination' ||
entry.type === 'AvatarChange' ||
@@ -7560,13 +7565,8 @@ speechSynthesis.getVoices();
if (!this.gameLogSearch(entry)) {
return;
}
if (entry.type === 'VideoPlay') {
// event time can be before last gameLog entry
this.updateSharedFeed(true);
}
this.gameLogTable.data.push(entry);
this.sweepGameLog();
this.updateSharedFeed(false);
this.notifyMenu('gameLog');
};

View File

@@ -1654,7 +1654,7 @@ html
#[i.x-user-status.askme] Ask Me
el-option(label="Do Not Disturb" value="busy").
#[i.x-user-status.busy] Do Not Disturb
el-option(label="Offline" value="offline").
el-option(v-if="API.currentUser.$isModerator" label="Offline" value="offline").
#[i.x-user-status.offline] Offline
el-input(v-model="socialStatusDialog.statusDescription" placeholder="Status" maxlength="32" show-word-limit style="dispaly:block;margin-top:10px")
template(#footer)