feat(old-client-notification) bump notice for anything older than 2022

Bumped to catch old macOS versions which were not signed and thus did
not have autoupdater working (ie. everything older than
https://github.com/jitsi/jitsi-meet-electron/releases/tag/v2021.11.2)

Signed-off-by: Christoph Settgast <csett86@web.de>
This commit is contained in:
Christoph Settgast 2022-07-24 18:39:57 +02:00 committed by Saúl Ibarra Corretgé
parent 2a5e169c2f
commit 0d9c4318ba
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export function isOldJitsiMeetElectronApp() {
const majorVersion = Number(match[3]);
if (isNaN(majorVersion) || majorVersion >= 2) {
if (isNaN(majorVersion) || majorVersion >= 2022) {
return false;
}