Skip to content

Commit a2a3985

Browse files
authored
Merge pull request #510 from TFNS/bugfix/start-working-on-discord
Fix startWorkingOn Discord bot hook
2 parents 0eb9eec + d722303 commit a2a3985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/src/discord/agile/hooks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ const discordMutationHook = (_build: Build) => (fieldContext: Context<any>) => {
220220
case "startWorkingOn":
221221
sendStartWorkingOnMessage(
222222
guild,
223-
args.input.taskId,
224-
context.jwtClaims.user_id
223+
context.jwtClaims.user_id,
224+
args.input.taskId
225225
).catch((err) => {
226226
console.error("Failed to start working on task.", err);
227227
});

0 commit comments

Comments
 (0)