summaryrefslogtreecommitdiffstats
path: root/lib/Db/CacheActorsRequest.php
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2018-11-28 21:15:39 -0100
committerJulius Härtl <jus@bitgrid.net>2018-11-29 13:57:21 +0100
commit4a0956b5ac410068a51dcffe0c4902496f6544d9 (patch)
tree94300a0ef90fc925898c26123a0ca4b362204941 /lib/Db/CacheActorsRequest.php
parent2ec04d611ea99476edb7820260e98ba54384ac79 (diff)
not sensitive case during getFromId
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Db/CacheActorsRequest.php')
-rw-r--r--lib/Db/CacheActorsRequest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Db/CacheActorsRequest.php b/lib/Db/CacheActorsRequest.php
index b8f154e7..f5b4454e 100644
--- a/lib/Db/CacheActorsRequest.php
+++ b/lib/Db/CacheActorsRequest.php
@@ -112,7 +112,7 @@ class CacheActorsRequest extends CacheActorsRequestBuilder {
*/
public function getFromId(string $id): Person {
$qb = $this->getCacheActorsSelectSql();
- $this->limitToIdString($qb, $id);
+ $this->limitToIdString($qb, $id, false);
$this->leftJoinCacheDocuments($qb, 'icon_id');
$cursor = $qb->execute();