Officially support the system tray on Linux, in beta only

This commit is contained in:
Evan Hahn 2021-06-29 14:29:40 -05:00 committed by GitHub
parent af1f2ea449
commit 8b30fc17cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 40 additions and 22 deletions

View file

@ -128,7 +128,11 @@ const { maybeParseUrl, setUrlSearchParams } = require('./ts/util/url');
const sql = new MainSQL();
let systemTrayService;
const systemTraySettingCache = new SystemTraySettingCache(sql, process.argv);
const systemTraySettingCache = new SystemTraySettingCache(
sql,
process.argv,
app.getVersion()
);
const challengeHandler = new ChallengeMainHandler();