Skip to content
Snippets Groups Projects
Unverified Commit 81688c51 authored by Arthur Schiwon's avatar Arthur Schiwon
Browse files

fixes an Exception on the background job because the config was not set

parent 3eb5ac9c
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,9 @@ class VerifyUserData extends Job {
/** @var string */
private $lookupServerUrl;
/** @var IConfig */
private $config;
/**
* VerifyUserData constructor.
*
......@@ -85,6 +88,7 @@ class VerifyUserData extends Job {
$lookupServerUrl = $config->getSystemValue('lookup_server', 'https://lookup.nextcloud.com');
$this->lookupServerUrl = rtrim($lookupServerUrl, '/');
$this->config = $config;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment