I have a problem with transforming minutes in make.com when I send JSON to wordpress with webhook. The information i get is in format "HH:MM" and it looks like this: 18:0 instead of 18:00, but when it comes to hours not rounded like 12:35 it gives proper minutes. I use code from make.com:
{{floor(1.seconds / 3600)}}:{{floor((1.seconds % 3600) / 60)}}:{{((1.seconds % 3600) % 60)}}
but result I have is like this: enter image description here but I need like: 18:00,
I dont know how to change it so that my JSON will have proper time when it is double 00.
Im transforming seconds to hours and minutes (86400 ( less than a day ).
Pleas help me.
Changing time to show double digits when there is 0.