fix(launcher): run jellyfin discovery as background tray session

This commit is contained in:
2026-03-01 15:07:11 -08:00
parent 5241ff3fcc
commit 2707b2ee96
3 changed files with 4 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ export async function runJellyfinCommand(context: LauncherCommandContext): Promi
}
if (args.jellyfinDiscovery) {
const forwarded = ['--start'];
const forwarded = ['--background', '--jellyfin-remote-announce'];
if (args.logLevel !== 'info') forwarded.push('--log-level', args.logLevel);
appendPasswordStore(forwarded);
runAppCommandWithInherit(appPath, forwarded);