mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-02 17:50:53 +02:00
Fixed: (Mylar3) Indexer Host needs to include trailing /api
This commit is contained in:
parent
2cd0dde4e2
commit
efb2a5751c
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ private MylarIndexer BuildMylarIndexer(IndexerDefinition indexer, DownloadProtoc
|
|||
{
|
||||
Name = originalName ?? $"{indexer.Name} (Prowlarr)",
|
||||
Altername = $"{indexer.Name} (Prowlarr)",
|
||||
Host = $"{Settings.ProwlarrUrl.TrimEnd('/')}/{indexer.Id}",
|
||||
Host = $"{Settings.ProwlarrUrl.TrimEnd('/')}/{indexer.Id}/api",
|
||||
Apikey = _configFileProvider.ApiKey,
|
||||
Categories = string.Join(",", indexer.Capabilities.Categories.SupportedCategories(Settings.SyncCategories.ToArray())),
|
||||
Enabled = indexer.Enable,
|
||||
|
|
|
|||
Loading…
Reference in a new issue