fix(ci): honor bluebubbles account action gates

This commit is contained in:
Peter Steinberger
2026-04-03 20:03:14 +01:00
parent 35a9eeb857
commit 811efa2db0

View File

@@ -77,7 +77,7 @@ export const bluebubblesMessageActions: ChannelMessageActionAdapter = {
if (!account.enabled || !account.configured) {
return null;
}
const gate = createActionGate(cfg.channels?.bluebubbles?.actions);
const gate = createActionGate(account.config.actions);
const actions = new Set<ChannelMessageActionName>();
const macOS26 = isMacOS26OrHigher(account.accountId);
const privateApiStatus = getCachedBlueBubblesPrivateApiStatus(account.accountId);