Default value of lookupServerEnabled should be the same everywhere

Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
Georg Ehrke 2020-03-17 10:39:59 +01:00 committed by backportbot[bot]
parent 2bfaa94804
commit e990a43709
2 changed files with 2 additions and 2 deletions

View File

@ -1043,7 +1043,7 @@ class FederatedShareProvider implements IShareProvider {
if ($this->gsConfig->isGlobalScaleEnabled()) {
return true;
}
$result = $this->config->getAppValue('files_sharing', 'lookupServerEnabled', 'no');
$result = $this->config->getAppValue('files_sharing', 'lookupServerEnabled', 'yes');
return ($result === 'yes');
}

View File

@ -777,7 +777,7 @@ class FederatedShareProviderTest extends \Test\TestCase {
$this->gsConfig->expects($this->once())->method('isGlobalScaleEnabled')
->willReturn($gsEnabled);
$this->config->expects($this->any())->method('getAppValue')
->with('files_sharing', 'lookupServerEnabled', 'no')
->with('files_sharing', 'lookupServerEnabled', 'yes')
->willReturn($isEnabled);
$this->assertSame($expected,