Compare commits

..

No commits in common. "master" and "v0.5.7" have entirely different histories.

View file

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