Skip to content

Commit

Permalink
Fixing Media Liquid Filter 'resize_url' arguments (#3425)
Browse files Browse the repository at this point in the history
Fixes #3408
  • Loading branch information
jeffolmstead authored and sebastienros committed Apr 2, 2019
1 parent e0ef2dd commit f84dc44
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public ValueTask<FluidValue> ProcessAsync(FluidValue input, FilterArguments argu

var width = arguments["width"].Or(arguments.At(0));
var height = arguments["height"].Or(arguments.At(1));
var mode = arguments["mode"];
var mode = arguments["mode"].Or(arguments.At(2));

if (!width.IsNil())
{
Expand Down

0 comments on commit f84dc44

Please sign in to comment.