diff --git a/src/Fetch/Server.php b/src/Fetch/Server.php index 1af1807..c5c9ced 100644 --- a/src/Fetch/Server.php +++ b/src/Fetch/Server.php @@ -250,7 +250,7 @@ class Server */ public function getImapStream() { - if (!isset($this->imapStream)) + if (empty($this->imapStream)) $this->setImapStream(); return $this->imapStream; @@ -302,7 +302,7 @@ class Server */ protected function setImapStream() { - if (isset($this->imapStream)) { + if (!empty($this->imapStream)) { if (!imap_reopen($this->imapStream, $this->getServerString(), $this->options, 1)) throw new \RuntimeException(imap_last_error()); } else {