diff --git a/app/Dates/DateFactory.php b/app/Dates/DateFactory.php index 2b04059c..588016ef 100644 --- a/app/Dates/DateFactory.php +++ b/app/Dates/DateFactory.php @@ -72,6 +72,6 @@ class DateFactory */ public function createNormalized($format, $time) { - return $this->create($format, $time)->setTimezone($this->appTimezone); + return Date::createFromFormat($format, $time)->setTimezone($this->appTimezone); } }