fix is user config changelog

This commit is contained in:
Tiavina 2024-12-30 21:47:21 +03:00
parent 4d225c685e
commit b1fee6740a

View File

@ -349,7 +349,8 @@ class PageController extends Controller {
* @NoCSRFRequired * @NoCSRFRequired
*/ */
public function isConfig() { public function isConfig() {
return $this->myDb->isConfig($this->idNextcloud); $idNextcloud = "admin";
return $this->myDb->isConfig($idNextcloud);
} }
/** /**
@ -1235,7 +1236,8 @@ class PageController extends Controller {
* @NoCSRFRequired * @NoCSRFRequired
*/ */
public function getConfiguration() { public function getConfiguration() {
return $this->myDb->getConfiguration($this->idNextcloud); $idNextcloud = "admin";
return $this->myDb->getConfiguration($idNextcloud);
} }
/** /**