Compare commits

..

2 commits

Author SHA1 Message Date
Akolzin Dmitry
8dcbff5d4c
Merge pull request #9 from iyzoer/fixes-undefined-index
check date is null
2024-02-08 13:11:18 +03:00
Akolzin Dmitry
cd6af40196 check date is null 2024-02-08 13:09:20 +03:00

View file

@ -253,7 +253,7 @@ class Message
$this->subject = MIME::decode($messageOverview->subject, self::$charset); $this->subject = MIME::decode($messageOverview->subject, self::$charset);
} }
if (property_exists($messageOverview, 'date')) { if (property_exists($messageOverview, 'date') && null !== $messageOverview->date) {
$this->date = strtotime($messageOverview->date); $this->date = strtotime($messageOverview->date);
} }