don't wait for checkResponse result before failing

This commit is contained in:
Michael Newton 2021-10-04 08:44:43 -06:00 committed by GitHub
parent dc854c4671
commit c01d14b8be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -308,6 +308,7 @@ class POP3
{
if (!$this->connected) {
$this->setError('Not connected to POP3 server');
return false;
}
if (empty($username)) {
$username = $this->username;