mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed: (DigitalCore) Release InfoUrls not being set
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user