From 9fccca11547eda34536cade71e07e5c8a4a75b35 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sun, 21 May 2017 22:01:03 +0200 Subject: [PATCH] Fixed up some errors and do the guid cache fix on the module instead of backend coz that would cause other issues. (cherry picked from commit 8eaab46488f00a74197c517c6ef773626aec5173) --- src/NzbDrone.Core/Indexers/IndexerBase.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/IndexerBase.cs b/src/NzbDrone.Core/Indexers/IndexerBase.cs index 9d545cdd0..53e921337 100644 --- a/src/NzbDrone.Core/Indexers/IndexerBase.cs +++ b/src/NzbDrone.Core/Indexers/IndexerBase.cs @@ -79,7 +79,6 @@ protected virtual IList CleanupReleases(IEnumerable re result.ForEach(c => { - c.Guid = string.Concat(Definition.Id, "_", c.Guid); c.IndexerId = Definition.Id; c.Indexer = Definition.Name; c.DownloadProtocol = Protocol;