From 77e40e8e53d377cab04d1d7c0af78913d14c3aa4 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 29 Nov 2021 11:30:14 -0600 Subject: [PATCH] Fixed: (TorrentSyndikat) Download URL missing API --- src/NzbDrone.Core/Indexers/Definitions/TorrentSyndikat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentSyndikat.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentSyndikat.cs index 7378803fd..517ed183f 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentSyndikat.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentSyndikat.cs @@ -244,7 +244,7 @@ namespace NzbDrone.Core.Indexers.Definitions UploadVolumeFactor = 1, Guid = details, InfoUrl = details, - DownloadUrl = _settings.BaseUrl + "download.php?id=" + id, + DownloadUrl = _settings.BaseUrl + "download.php?id=" + id + "&apikey=" + _settings.ApiKey, Title = row.Value("name"), Categories = _categories.MapTrackerCatToNewznab(row.Value("category").ToString()), PublishDate = dateTime.AddSeconds(row.Value("added")).ToLocalTime(),