Skip to content

Commit 1432bed

Browse files
authored
Merge pull request #620 from barbushin/Issue-113-Fix-syntax-error
Issue 113 fix syntax error
2 parents 35737d8 + 3d0d753 commit 1432bed

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)