fix: honor bluebubbles default setup status

This commit is contained in:
Tak Hoffman
2026-04-03 15:24:25 -05:00
parent 63603876bf
commit 8cb3316afb
2 changed files with 29 additions and 4 deletions

View File

@@ -174,10 +174,7 @@ export const blueBubblesSetupWizard: ChannelSetupWizard = {
unconfiguredScore: 0,
includeStatusLine: true,
resolveConfigured: ({ cfg, accountId }) =>
(accountId ? [accountId] : listBlueBubblesAccountIds(cfg)).some((resolvedAccountId) => {
const account = resolveBlueBubblesAccount({ cfg, accountId: resolvedAccountId });
return account.configured;
}),
resolveBlueBubblesAccount({ cfg, accountId }).configured,
}),
resolveSelectionHint: ({ configured }) =>
configured ? "configured" : "iMessage via BlueBubbles app",