mirror of
https://github.com/retailcrm/Fetch.git
synced 2024-11-22 11:16:03 +03:00
parent
378bfbdbe0
commit
bcdc85d5d8
@ -541,18 +541,15 @@ class Message
|
|||||||
$encoding = strtolower($encoding);
|
$encoding = strtolower($encoding);
|
||||||
}
|
}
|
||||||
|
|
||||||
switch ($encoding) {
|
switch (true) {
|
||||||
case 'base64':
|
case $encoding === 'quoted-printable':
|
||||||
case 3:
|
case $encoding === 4:
|
||||||
case 5:
|
|
||||||
case 6:
|
|
||||||
case 7:
|
|
||||||
return base64_decode($data);
|
|
||||||
|
|
||||||
case 'quoted-printable':
|
|
||||||
case 4:
|
|
||||||
return quoted_printable_decode($data);
|
return quoted_printable_decode($data);
|
||||||
|
|
||||||
|
case $encoding === 'base64':
|
||||||
|
case $encoding === 3:
|
||||||
|
return base64_decode($data);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user