From 06b2446269f16035444eea1335e13b355a48e442 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 16 Mar 2015 15:37:12 +0100 Subject: [PATCH] The key is over configkey, user and app, not the value stupid me :( --- lib/private/allconfig.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/allconfig.php b/lib/private/allconfig.php index b8bba7986e..8d4f13e5b9 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);