I have a new error in a scenario which worked properly for months, even years.
The error is:
Function ‘parseDate’ finished with error! ‘május 27, 2025 2:51 du.’ is not a valid date or does not match the date format.
( It is a datetime in Hungarian )
The same webhook content was properly processed on 20th May, but not on 27th and on.
The datetime processing is:
{{addHours(parseDate(1.time; “H:mm A”; “Europe/Budapest”); 1)}},
so this was working for a long time, but not anymore.
What happened? A package update?
How to fix?
Thank you in advance!
Hey there,
if the formula is the same, can you check if the incoming data changed?
If the data is the same and the formula is the same, then best suggestion is to open a support ticket.
Hey Stoyan,
yes, both the formula and the incoming data language and format is the same.
OK, I’ll open a support ticket.
Welcome to the Make community!
You’ll have to translate the date before you can use the date format tokens, which only supports English.
So you’ll have to do something like this,
{{replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(1.time; "január"; "January"); "február"; "February"); "március"; "March"); "április"; "April"); "május"; "May"); "június"; "June"); "július"; "July"); "augusztus"; "August"); "szeptember"; "September"); "október"; "October"); "november"; "November"); "december"; "December")}}
(copy-paste the above into the field, or type it exactly as shown)
For more information, see related thread:
Hope this helps! Let me know if there are any further questions or issues. P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!
— @samliew