We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dd2768 commit e49703dCopy full SHA for e49703d
1 file changed
src/channels/plugins/status.ts
@@ -83,8 +83,8 @@ export async function buildChannelAccountSnapshot<ResolvedAccount>(params: {
83
audit?: unknown;
84
}): Promise<ChannelAccountSnapshot> {
85
const inspectedAccount = await inspectChannelAccount(params);
86
- const account =
87
- inspectedAccount ?? params.plugin.config.resolveAccount(params.cfg, params.accountId);
+ const account = (inspectedAccount ??
+ params.plugin.config.resolveAccount(params.cfg, params.accountId)) as ResolvedAccount;
88
return await buildChannelAccountSnapshotFromAccount({
89
...params,
90
account,
0 commit comments