diff --git a/src/NzbDrone.Core/Indexers/Definitions/Xthor/XthorParser.cs b/src/NzbDrone.Core/Indexers/Definitions/Xthor/XthorParser.cs index 07702e0b3..80ca90914 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/Xthor/XthorParser.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/Xthor/XthorParser.cs @@ -18,7 +18,7 @@ namespace NzbDrone.Core.Indexers.Definitions.Xthor { _settings = settings; _categories = categories; - _torrentDetailsUrl = _settings.BaseUrl.Replace("api.", "") + "details.php?id={id}"; + _torrentDetailsUrl = _settings.BaseUrl.Replace("api.", "").TrimEnd('/') + "/details.php?id={id}"; } public IList ParseResponse(IndexerResponse indexerResponse)