From: Joas Schilling Date: Mon, 16 Mar 2015 14:37:12 +0000 (+0100) Subject: The key is over configkey, user and app, not the value X-Git-Tag: v8.1.0alpha1~276^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=06b2446269f16035444eea1335e13b355a48e442;p=nextcloud-server.git The key is over configkey, user and app, not the value stupid me :( --- diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index b8bba7986e6..8d4f13e5b9c 100644 --- a/lib/private/allconfig.php +++ b/lib/private/allconfig.php @@ -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);