mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-04 14:02:17 +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 {
|
||||
return \json_decode($sDecodedValues, true, 512, JSON_THROW_ON_ERROR) ?: array();
|
||||
} catch (\Throwable $e) {
|
||||
return \unserialize($aResult) ?: array();
|
||||
return \unserialize($sDecodedValues) ?: array();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue