Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fixed bug that made subjects be empty
  • Loading branch information
Jascha Lülsdorf committed May 3, 2016
commit d30577672d467faa76a4f48d3c325ea0d0c01d0f
3 changes: 3 additions & 0 deletions src/Fetch/MIME.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public static function decode($text, $targetCharset = 'utf-8')
if (strtoupper($ch) != strtoupper($targetCharset)) {
$result .= iconv($ch, $targetCharset, $word->text);
}
else {
$result .= $word->text;
}
}

return $result;
Expand Down