Skip to content

Commit

Permalink
Banned users can't use wizard to create new orders (lnp2pBot#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
grunch authored Aug 13, 2024
1 parent 65d783b commit df0a236
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bot/modules/orders/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,11 @@ async function enterWizard(ctx, user, type) {
if (comm.currencies.length === 1) {
state.currency = comm.currencies[0];
}
// We verify if the user is not banned on this community
if (await isBannedFromCommunity(user, user.default_community_id))
return await messages.bannedUserErrorMessage(ctx, user);
}

await ctx.scene.enter(Scenes.CREATE_ORDER, state);
}

Expand Down

0 comments on commit df0a236

Please sign in to comment.