mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: (DigitalCore) Release InfoUrls not being set
This commit is contained in:
parent
0ddc530dd4
commit
535f29bef4
1 changed files with 4 additions and 1 deletions
|
@ -267,8 +267,11 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||
release.Files = row.numfiles;
|
||||
release.Grabs = row.times_completed;
|
||||
|
||||
release.Guid = new Uri(_settings.BaseUrl + "torrent/" + row.id.ToString() + "/").ToString();
|
||||
var infoUrl = _settings.BaseUrl + "torrent/" + row.id.ToString() + "/";
|
||||
|
||||
release.Guid = infoUrl;
|
||||
release.DownloadUrl = _settings.BaseUrl + "api/v1/torrents/download/" + row.id.ToString();
|
||||
release.InfoUrl = infoUrl;
|
||||
|
||||
if (row.frileech == 1)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue