mirror of
https://github.com/nextcloud/server.git
synced 2026-03-07 16:01:08 -05:00
Merge pull request #18847 from nextcloud/backport/18786/stable18
[stable18] AppFetcher: Distinguish between fileName and endpointName
This commit is contained in:
commit
3085e2e8b2
4 changed files with 1867 additions and 1781 deletions
|
|
@ -68,6 +68,7 @@ class AppFetcher extends Fetcher {
|
|||
);
|
||||
|
||||
$this->fileName = 'apps.json';
|
||||
$this->endpointName = 'apps.json';
|
||||
$this->compareVersion = $compareVersion;
|
||||
$this->ignoreMaxVersion = true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,5 +53,6 @@ class CategoryFetcher extends Fetcher {
|
|||
$logger
|
||||
);
|
||||
$this->fileName = 'categories.json';
|
||||
$this->endpointName = 'categories.json';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,6 +55,8 @@ abstract class Fetcher {
|
|||
/** @var string */
|
||||
protected $fileName;
|
||||
/** @var string */
|
||||
protected $endpointName;
|
||||
/** @var string */
|
||||
protected $version;
|
||||
/** @var string */
|
||||
protected $channel;
|
||||
|
|
@ -219,6 +221,6 @@ abstract class Fetcher {
|
|||
}
|
||||
|
||||
protected function getEndpoint(): string {
|
||||
return $this->config->getSystemValue('appstoreurl', 'https://apps.nextcloud.com/api/v1') . '/' . $this->fileName;
|
||||
return $this->config->getSystemValue('appstoreurl', 'https://apps.nextcloud.com/api/v1') . '/' . $this->endpointName;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue