Skip to content

Commit

Permalink
fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jcger committed Oct 9, 2024
1 parent 63f28f5 commit 2570d7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function unmuteAllWithOCC(context: RulesClientContext, params: UnmuteAllRu
try {
unmuteAllRuleParamsSchema.validate(params);
} catch (error) {
throw Boom.badRequest(`Error validating mute all parameters - ${error.message}`);
throw Boom.badRequest(`Error validating unmute all parameters - ${error.message}`);
}

const { id } = params;
Expand Down

0 comments on commit 2570d7b

Please sign in to comment.