summaryrefslogtreecommitdiffstats
path: root/lib/private/Installer.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-01-17 21:10:40 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-01-17 21:41:56 +0100
commit09f8a755ec6897eb72aa1da4eff623807201623d (patch)
treec8072f914b1de3ebcdf373a2547303adcd8ad479 /lib/private/Installer.php
parentee2617d88c17165dd3a4862f2a5b98a434435430 (diff)
downloadnextcloud-server-09f8a755ec6897eb72aa1da4eff623807201623d.tar.gz
nextcloud-server-09f8a755ec6897eb72aa1da4eff623807201623d.zip
Remove IAppConfig::getValue
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/Installer.php')
-rw-r--r--lib/private/Installer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Installer.php b/lib/private/Installer.php
index 4dcf5a8dad9..1c6c3915b41 100644
--- a/lib/private/Installer.php
+++ b/lib/private/Installer.php
@@ -133,7 +133,7 @@ class Installer {
//install the database
if(is_file($basedir.'/appinfo/database.xml')) {
- if (\OC::$server->getAppConfig()->getValue($info['id'], 'installed_version') === null) {
+ if (\OC::$server->getConfig()->getAppValue($info['id'], 'installed_version') === null) {
OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml');
} else {
OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml');