You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Liquid allows render to be called with either a Hash, Context, or Drop. It appears that in the latter case, increment and decrement filters fail with Liquid error: internal because a drop is not writable to store the incrementing value of the counter.
Is this the expected behavior?
Sample Code:
Liquid::Template.parse('{%increment port %} {{ port }}').render(Liquid::Drop.new)
The text was updated successfully, but these errors were encountered:
Issue
Liquid allows render to be called with either a Hash, Context, or Drop. It appears that in the latter case, increment and decrement filters fail with
Liquid error: internal
because a drop is not writable to store the incrementing value of the counter.Is this the expected behavior?
Sample Code:
The text was updated successfully, but these errors were encountered: