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>
pull/11872/head jitsi-meet_7574
Christoph Settgast 3 years ago committed by Saúl Ibarra Corretgé
parent 2a5e169c2f
commit 0d9c4318ba
  1. 2
      react/features/old-client-notification/functions.js

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

Loading…
Cancel
Save