diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-07-02 09:16:00 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-07-02 09:22:20 +0200 |
commit | 3906951e91e5c488ee3481c615c796836a7309fe (patch) | |
tree | d3114ed7ae26bde1aeca4267197acc47ee0116bd /lib/private | |
parent | 78dc8ca702903b07dbc02746bebcb96169558610 (diff) | |
download | nextcloud-server-3906951e91e5c488ee3481c615c796836a7309fe.tar.gz nextcloud-server-3906951e91e5c488ee3481c615c796836a7309fe.zip |
Delete OCS ID from DB if none is specified
If no OCS ID is specified in appinfo.xml and an app update is triggered and a OCS ID is stored in the DB we should clean the value.
Ref https://github.com/owncloud/activity/issues/320#issuecomment-117937748
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/app.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/app.php b/lib/private/app.php index 6c38cdb8223..6f0abf58e17 100644 --- a/lib/private/app.php +++ b/lib/private/app.php @@ -1173,6 +1173,8 @@ class OC_App { $appData = self::getAppInfo($appId); if (array_key_exists('ocsid', $appData)) { OC_Appconfig::setValue($appId, 'ocsid', $appData['ocsid']); + } elseif(OC_Appconfig::getValue($appId, 'ocsid', null) !== null) { + OC_Appconfig::deleteKey($appId, 'ocsid'); } foreach ($appData['remote'] as $name => $path) { OCP\CONFIG::setAppValue('core', 'remote_' . $name, $appId . '/' . $path); |