mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-06 14:58:19 +08:00
Bugfix undefined aResult
This commit is contained in:
parent
32699c5446
commit
0ce29dae24
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ class Utils
|
||||||
try {
|
try {
|
||||||
return \json_decode($sDecodedValues, true, 512, JSON_THROW_ON_ERROR) ?: array();
|
return \json_decode($sDecodedValues, true, 512, JSON_THROW_ON_ERROR) ?: array();
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
return \unserialize($aResult) ?: array();
|
return \unserialize($sDecodedValues) ?: array();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue