mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-22 19:26:01 +03:00
Merge pull request #88 from Xethron/catch-mb_convert_encoding-exceptions
Catch mb convert encoding exceptions
This commit is contained in:
commit
501d5d0974
@ -10,6 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Fetch;
|
namespace Fetch;
|
||||||
|
use Exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This library is a wrapper around the Imap library functions included in php. This class represents a single email
|
* This library is a wrapper around the Imap library functions included in php. This class represents a single email
|
||||||
@ -465,10 +466,21 @@ class Message
|
|||||||
$messageBody = self::decode($messageBody, $structure->encoding);
|
$messageBody = self::decode($messageBody, $structure->encoding);
|
||||||
|
|
||||||
if (!empty($parameters['charset']) && $parameters['charset'] !== self::$charset) {
|
if (!empty($parameters['charset']) && $parameters['charset'] !== self::$charset) {
|
||||||
|
$mb_converted = false;
|
||||||
if (function_exists('mb_convert_encoding')) {
|
if (function_exists('mb_convert_encoding')) {
|
||||||
$messageBody = mb_convert_encoding($messageBody, self::$charset, $parameters['charset']);
|
try {
|
||||||
} else {
|
$messageBody = mb_convert_encoding($messageBody, self::$charset, $parameters['charset']);
|
||||||
$messageBody = iconv($parameters['charset'], self::$charset . self::$charsetFlag, $messageBody);
|
$mb_converted = true;
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// @TODO Handle exception
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!$mb_converted) {
|
||||||
|
try {
|
||||||
|
$messageBody = iconv($parameters['charset'], self::$charset . self::$charsetFlag, $messageBody);
|
||||||
|
} catch (Exception $e) {
|
||||||
|
// @TODO Handle exception
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user