Skip to content

Commit

Permalink
fix: fix some webhook bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Feb 5, 2024
1 parent 2a4bd05 commit d6a74cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/createWebhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const action: ActionFunction = {
name: truncate(action.name || action.board.name, 100),
memberID: userData.trelloID,
modelID: action.board.id,
trelloWebhookID: trelloWebhook.data.id,
trelloWebhookID: trelloWebhook.status ? trelloWebhook.data.id : trelloWebhook.id,
guildID: ctx.guildID,
filters: DEFAULT.toString(),
locale,
Expand Down

0 comments on commit d6a74cc

Please sign in to comment.