Skip to content

Commit

Permalink
Update variable names for better clarity and understanding. (OrchardC…
Browse files Browse the repository at this point in the history
  • Loading branch information
jbytes1027 authored Jan 9, 2025
1 parent d93ff43 commit 4a584a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public ValueTask<FluidValue> ProcessAsync(FluidValue input, FilterArguments argu
var urlHelper = _urlHelperFactory.GetUrlHelper(context.ViewContext);

var trimmedInputString = input.ToStringValue().Trim();
var absoluteUrl = urlHelper.Content(trimmedInputString);
var absolutePath = urlHelper.Content(trimmedInputString);

return ValueTask.FromResult<FluidValue>(new StringValue(absoluteUrl));
return new StringValue(absolutePath);
}
}

0 comments on commit 4a584a3

Please sign in to comment.