fix loging data not available on logout

This commit is contained in:
Yurii
2026-02-25 12:56:40 +02:00
parent db504a3ee7
commit a8398965b8
2 changed files with 22 additions and 8 deletions
+1 -8
View File
@@ -70,13 +70,6 @@ class Settings
private function getConfigData(): stdClass
{
$data = $this->service->getConfigData();
$metadataData = $this->service->getMetadataConfigData();
foreach (get_object_vars($metadataData) as $key => $value) {
$data->$key = $value;
}
return $data;
return $this->service->getConfigData();
}
}