chore(.NET): update deps

This commit is contained in:
Natsumi
2022-04-25 18:17:46 +12:00
parent 54e8e98533
commit 7d0425d61f
2 changed files with 13 additions and 7 deletions

View File

@@ -19053,12 +19053,18 @@ speechSynthesis.getVoices();
callback: (action) => {
if (action !== 'confirm') {
this.gameLogDisabled = !this.gameLogDisabled;
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
}
}
});
} else {
configRepository.setBool('VRCX_gameLogDisabled', this.gameLogDisabled);
configRepository.setBool(
'VRCX_gameLogDisabled',
this.gameLogDisabled
);
}
};