Fix Jellyfin Login (#76)

This commit is contained in:
2026-05-20 00:46:11 -07:00
committed by GitHub
parent 799cce6991
commit a54f03f0cd
31 changed files with 1087 additions and 148 deletions
+2 -2
View File
@@ -336,12 +336,12 @@ test('known Linux package-managed AppImage detection follows the canonical AUR p
);
});
test('native updater is unsupported on Windows by default', async () => {
test('windows native updater is supported for packaged builds', async () => {
const supported = await isNativeUpdaterSupported({
platform: 'win32',
isPackaged: true,
execPath: 'C:\\Program Files\\SubMiner\\SubMiner.exe',
});
assert.equal(supported, false);
assert.equal(supported, true);
});