🇩🇪Germany Belshi
In my case the problem was in line 83 of Date.php
$convert = strtotime($value['value']);
didn't work because $value was just a string. So I had to change it to
$convert = strtotime($value);
I made a patch for my case, but did no further testing. But maybe it helps somebody else here