Skip to content

Commit f401d85

Browse files
authored
Merge pull request #621 from barbushin/develop
Issue #619: Fix syntax error
2 parents fb8be23 + 1432bed commit f401d85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhpImap/DataPartInfo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected function convertEncodingAfterFetch(): string
109109
{
110110
if (isset($this->charset) && !empty(\trim($this->charset))) {
111111
$this->data = $this->mail->decodeMimeStr(
112-
(string) $this->data // Data to convert
112+
(string) $this->data, // Data to convert
113113
\trim($this->charset)
114114
);
115115
}

0 commit comments

Comments
 (0)