mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-06 16:43:25 +01:00
Fixed: Digital Core null BaseUrl
This commit is contained in:
parent
24e4efbb42
commit
db2b7cb22f
2 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@ module.exports = {
|
|||
ecmaVersion: 6,
|
||||
sourceType: 'module',
|
||||
babelOptions: {
|
||||
configFile: `${frontendFolder}/babel.config.js`,
|
||||
configFile: `${frontendFolder}/babel.config.js`
|
||||
},
|
||||
ecmaFeatures: {
|
||||
modules: true,
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ public DigitalCore(IHttpClient httpClient, IIndexerStatusService indexerStatusSe
|
|||
|
||||
public override IIndexerRequestGenerator GetRequestGenerator()
|
||||
{
|
||||
return new DigitalCoreRequestGenerator() { Settings = Settings, PageSize = PageSize, Capabilities = Capabilities };
|
||||
return new DigitalCoreRequestGenerator() { Settings = Settings, PageSize = PageSize, Capabilities = Capabilities, BaseUrl = BaseUrl };
|
||||
}
|
||||
|
||||
public override IParseIndexerResponse GetParser()
|
||||
|
|
|
|||
Loading…
Reference in a new issue