diff --git a/src/Jackett.Common/Indexers/TorrentBytes.cs b/src/Jackett.Common/Indexers/TorrentBytes.cs index 20faaf57a..0adc6d6d3 100644 --- a/src/Jackett.Common/Indexers/TorrentBytes.cs +++ b/src/Jackett.Common/Indexers/TorrentBytes.cs @@ -161,7 +161,7 @@ namespace Jackett.Common.Indexers // There isn't a title attribute if the release name isn't truncated. if (string.IsNullOrWhiteSpace(release.Title)) { - release.Title = link.Get(0).FirstChild.ToString(); + release.Title = link.Get(0).FirstChild.ToString().Trim(); } release.Description = release.Title;