From d5b12cf51a7adf48d4ef5455014c61443a8a01ef Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 18 Feb 2025 04:00:24 +0200 Subject: [PATCH] Fixed release guid for SpeedApp --- src/NzbDrone.Core/Indexers/Definitions/SpeedApp/SpeedAppBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/SpeedApp/SpeedAppBase.cs b/src/NzbDrone.Core/Indexers/Definitions/SpeedApp/SpeedAppBase.cs index f0170d868..244a9c286 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/SpeedApp/SpeedAppBase.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/SpeedApp/SpeedAppBase.cs @@ -262,7 +262,7 @@ public IList ParseResponse(IndexerResponse indexerResponse) return jsonResponse.Resource.Select(torrent => new TorrentInfo { - Guid = torrent.Id.ToString(), + Guid = torrent.Url, Title = CleanTitle(torrent.Name), Description = torrent.ShortDescription, Size = torrent.Size,