Merge pull request #8881 from nextcloud/setUserValue_opt
Store setUserValue as string in cache
This commit is contained in:
commit
ce0c896d8f
1 changed files with 2 additions and 2 deletions
|
@ -233,7 +233,7 @@ class AllConfig implements \OCP\IConfig {
|
||||||
->andWhere($qb->expr()->eq('configkey', $qb->createNamedParameter($key)));
|
->andWhere($qb->expr()->eq('configkey', $qb->createNamedParameter($key)));
|
||||||
$qb->execute();
|
$qb->execute();
|
||||||
|
|
||||||
$this->userCache[$userId][$appName][$key] = $value;
|
$this->userCache[$userId][$appName][$key] = (string)$value;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -258,7 +258,7 @@ class AllConfig implements \OCP\IConfig {
|
||||||
if (!isset($this->userCache[$userId][$appName])) {
|
if (!isset($this->userCache[$userId][$appName])) {
|
||||||
$this->userCache[$userId][$appName] = array();
|
$this->userCache[$userId][$appName] = array();
|
||||||
}
|
}
|
||||||
$this->userCache[$userId][$appName][$key] = $value;
|
$this->userCache[$userId][$appName][$key] = (string)$value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue