Merge pull request #21999 from owncloud/properly-decode-cached-objects

[user_ldap] properly decode cached objects
This commit is contained in:
Thomas Müller 2016-02-01 08:59:55 +01:00
commit 21e9c6d1d0

View file

@ -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);
}
/**