mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix: Fix Undefined array key "flags" on upgrade
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
b6f8bbb6bf
commit
d769a5c001
1 changed files with 1 additions and 1 deletions
|
|
@ -1720,7 +1720,7 @@ class UserConfig implements IUserConfig {
|
|||
} else {
|
||||
$this->fastCache[$userId][$row['appid']][$row['configkey']] = $row['configvalue'] ?? '';
|
||||
}
|
||||
$this->valueDetails[$userId][$row['appid']][$row['configkey']] = ['type' => ValueType::from((int)($row['type'] ?? 0)), 'flags' => (int)$row['flags']];
|
||||
$this->valueDetails[$userId][$row['appid']][$row['configkey']] = ['type' => ValueType::from((int)($row['type'] ?? 0)), 'flags' => (int)($row['flags'] ?? 0)];
|
||||
}
|
||||
$result->closeCursor();
|
||||
$this->setAsLoaded($userId, $lazy);
|
||||
|
|
|
|||
Loading…
Reference in a new issue