'round: 2' liquid filter does not round up number as expected in Order Printer app

Hi,

22*0.840337=18.487414

I expect “round: 2” to round up 18.487 to 18.49, but

{{ shipping_price | times: 0.840337 | round: 2 | money_without_currency }}
returns 18.48

{{ shipping_price | divided_by: 1.19 | round: 2 | money_without_currency }}

returns the same, 18.48


I’s a problem, because the sum of line_item.price (without tax) and line_item’s tax is not equal with the line_item price (with tax)

The VAT is an extra 19% in my country.

^ shipping_price = 22