mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 18:11:41 -04:00
Merge pull request #21999 from owncloud/properly-decode-cached-objects
[user_ldap] properly decode cached objects
This commit is contained in:
commit
21e9c6d1d0
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ class Connection extends LDAPUtility {
|
|||
}
|
||||
$key = $this->getCacheKey($key);
|
||||
|
||||
return json_decode(base64_decode($this->cache->get($key)));
|
||||
return json_decode(base64_decode($this->cache->get($key)), true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue