Skip to content

Commit

Permalink
Merge pull request #621 from barbushin/develop
Browse files Browse the repository at this point in the history
Issue #619: Fix syntax error
  • Loading branch information
Sebbo94BY committed Nov 21, 2021
2 parents fb8be23 + 1432bed commit f401d85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PhpImap/DataPartInfo.php
Expand Up @@ -109,7 +109,7 @@ protected function convertEncodingAfterFetch(): string
{
if (isset($this->charset) && !empty(\trim($this->charset))) {
$this->data = $this->mail->decodeMimeStr(
(string) $this->data // Data to convert
(string) $this->data, // Data to convert
\trim($this->charset)
);
}
Expand Down

0 comments on commit f401d85

Please sign in to comment.