The key is over configkey, user and app, not the value

stupid me :(
This commit is contained in:
Joas Schilling 2015-03-16 15:37:12 +01:00
parent 1075914f8a
commit 06b2446269
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ class AllConfig implements \OCP\IConfig {
'userid' => $userId,
'appid' => $appName,
'configkey' => $key,
], ['configvalue', 'userid', 'appid']);
], ['configkey', 'userid', 'appid']);
$affectedRows = 1;
} elseif ($exists) {
$data = array($value, $userId, $appName, $key);