Skip to content

Commit

Permalink
Fix infinite loop?
Browse files Browse the repository at this point in the history
  • Loading branch information
jensstalder authored Sep 17, 2019
1 parent ece418b commit 78882f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Protocol/Imap.php
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ protected function decodeLine($line)
$line .= $this->nextLine();
}
$tokens[] = $token;
$line = trim($line) . ' ';
$line = trim($line); // MY FIX!!!
continue;
}
}
Expand Down

0 comments on commit 78882f6

Please sign in to comment.