mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-21 15:53:50 +02:00
Fix null notifications
This commit is contained in:
@@ -22600,7 +22600,7 @@ speechSynthesis.getVoices();
|
||||
$app.data.databaseVersion = configRepository.getInt('VRCX_databaseVersion');
|
||||
|
||||
$app.methods.updateDatabaseVersion = async function () {
|
||||
var databaseVersion = 4;
|
||||
var databaseVersion = 5;
|
||||
if (this.databaseVersion !== databaseVersion) {
|
||||
var msgBox = this.$message({
|
||||
message: 'DO NOT CLOSE VRCX, database upgrade in process...',
|
||||
@@ -22617,6 +22617,7 @@ speechSynthesis.getVoices();
|
||||
await database.fixBrokenLeaveEntries(); // fix user instance timer being higher than current user location timer
|
||||
await database.fixBrokenGroupInvites(); // fix notification v2 in wrong table
|
||||
await database.updateTableForGroupNames(); // alter tables to include group name
|
||||
database.fixBrokenNotifications(); // fix notifications being null
|
||||
this.databaseVersion = databaseVersion;
|
||||
configRepository.setInt(
|
||||
'VRCX_databaseVersion',
|
||||
|
||||
Reference in New Issue
Block a user