Use the same URL everywhere
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
3e00554d35
commit
615b69677e
3 changed files with 10 additions and 10 deletions
|
@ -519,7 +519,7 @@ $CONFIG = array(
|
|||
/**
|
||||
* URL that Nextcloud should use to look for updates
|
||||
*/
|
||||
'updater.server.url' => 'https://updates.nextcloud.com/update-server/',
|
||||
'updater.server.url' => 'https://updates.nextcloud.com/updater_server/',
|
||||
|
||||
/**
|
||||
* Is Nextcloud connected to the Internet or running in a closed network?
|
||||
|
|
|
@ -59,7 +59,7 @@ class VersionCheck {
|
|||
return json_decode($this->config->getAppValue('core', 'lastupdateResult'), true);
|
||||
}
|
||||
|
||||
$updaterUrl = $this->config->getSystemValue('updater.server.url', 'https://updates.nextcloud.com/update-server/');
|
||||
$updaterUrl = $this->config->getSystemValue('updater.server.url', 'https://updates.nextcloud.com/updater_server/');
|
||||
|
||||
$this->config->setAppValue('core', 'lastupdatedat', time());
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->config
|
||||
->expects($this->at(1))
|
||||
->method('getSystemValue')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/')
|
||||
->willReturnArgument(1);
|
||||
$this->config
|
||||
->expects($this->at(2))
|
||||
|
@ -126,7 +126,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->updater
|
||||
->expects($this->once())
|
||||
->method('getUrlContent')
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/updater_server/'))
|
||||
->will($this->returnValue($updateXml));
|
||||
|
||||
$this->assertSame($expectedResult, $this->updater->check());
|
||||
|
@ -141,7 +141,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->config
|
||||
->expects($this->at(1))
|
||||
->method('getSystemValue')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/')
|
||||
->willReturnArgument(1);
|
||||
$this->config
|
||||
->expects($this->at(2))
|
||||
|
@ -166,7 +166,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->updater
|
||||
->expects($this->once())
|
||||
->method('getUrlContent')
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/updater_server/'))
|
||||
->will($this->returnValue($updateXml));
|
||||
|
||||
$this->assertSame([], $this->updater->check());
|
||||
|
@ -189,7 +189,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->config
|
||||
->expects($this->at(1))
|
||||
->method('getSystemValue')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/')
|
||||
->willReturnArgument(1);
|
||||
$this->config
|
||||
->expects($this->at(2))
|
||||
|
@ -217,7 +217,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->updater
|
||||
->expects($this->once())
|
||||
->method('getUrlContent')
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/updater_server/'))
|
||||
->will($this->returnValue($updateXml));
|
||||
|
||||
$this->assertSame($expectedResult, $this->updater->check());
|
||||
|
@ -234,7 +234,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->config
|
||||
->expects($this->at(1))
|
||||
->method('getSystemValue')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/update-server/')
|
||||
->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/')
|
||||
->willReturnArgument(1);
|
||||
$this->config
|
||||
->expects($this->at(2))
|
||||
|
@ -259,7 +259,7 @@ class VersionCheckTest extends \Test\TestCase {
|
|||
$this->updater
|
||||
->expects($this->once())
|
||||
->method('getUrlContent')
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/update-server/'))
|
||||
->with($this->buildUpdateUrl('https://updates.nextcloud.com/updater_server/'))
|
||||
->will($this->returnValue($updateXml));
|
||||
|
||||
$this->assertSame($expectedResult, $this->updater->check());
|
||||
|
|
Loading…
Reference in a new issue