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