Skip to content

Commit

Permalink
fixup! fix appconfig tests
Browse files Browse the repository at this point in the history
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
  • Loading branch information
rullzer committed Dec 7, 2020
1 parent 4dab867 commit c04df80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/AppConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ protected function loadConfigValues() {
$rows = $result->fetchAll();
foreach ($rows as $row) {
if (!isset($this->cache[$row['appid']])) {
$this->cache[$row['appid']] = [];
$this->cache[(string)$row['appid']] = [];
}

$this->cache[(string)$row['appid']][(string)$row['configkey']] = (string)$row['configvalue'];
Expand Down

0 comments on commit c04df80

Please sign in to comment.