From 292620169445d58f73fba0822c26e82c6164611a Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 3 Aug 2019 19:27:11 -0700 Subject: [PATCH] Fixed: RARBG links in Interactive Search Fixes #3239 --- src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs b/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs index 61395a5b2..5dca6bf70 100644 --- a/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs +++ b/src/NzbDrone.Core/Indexers/Rarbg/RarbgParser.cs @@ -51,7 +51,7 @@ namespace NzbDrone.Core.Indexers.Rarbg torrentInfo.Title = torrent.title; torrentInfo.Size = torrent.size; torrentInfo.DownloadUrl = torrent.download; - torrentInfo.InfoUrl = torrent.info_page; + torrentInfo.InfoUrl = torrent.info_page + "&app_id=Sonarr"; torrentInfo.PublishDate = torrent.pubdate.ToUniversalTime(); torrentInfo.Seeders = torrent.seeders; torrentInfo.Peers = torrent.leechers + torrent.seeders;