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:
parent
2a5e169c2f
commit
0d9c4318ba
|
@ -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…
Reference in New Issue