Skip to content

Commit

Permalink
remove the regex unescape, it is not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
runeanielsen committed Feb 1, 2025
1 parent 88e4770 commit 053cbfa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public SpecificationMutations(ILoggerFactory loggerFactory, ICommandDispatcher c
{
try
{
var specificationJson = Regex.Unescape(context.GetArgument<string>("json"));
var specificationJson = context.GetArgument<string>("json");

logger.LogInformation("Received the following JSON input: {Json} to be inserted as a specification.", specificationJson);

Expand Down

0 comments on commit 053cbfa

Please sign in to comment.