This commit is contained in:
Natsumi
2021-11-04 20:49:06 +13:00
parent 6bf11a1f51
commit f8c9442d2d
2 changed files with 6 additions and 2 deletions

View File

@@ -9670,7 +9670,11 @@ speechSynthesis.getVoices();
}
configRepository.setString('VRCX_branch', $app.data.branch);
}
if (!configRepository.getString('VRCX_lastVRCXVersion')) {
if (configRepository.getString('VRCX_lastVRCXVersion')) {
if (configRepository.getString('VRCX_lastVRCXVersion') < appVersion) {
configRepository.setString('VRCX_lastVRCXVersion', appVersion);
}
} else {
configRepository.setString('VRCX_lastVRCXVersion', appVersion);
}
if (!configRepository.getInt('VRCX_maxTableSize')) {