diff --git a/src/Jackett.Common/Indexers/GazelleGames.cs b/src/Jackett.Common/Indexers/GazelleGames.cs index 40043f52bc269d628bd3ac48390dbd88348604b5..90037de2c9188e10f75069d9baf1601de3eb38b3 100644 --- a/src/Jackett.Common/Indexers/GazelleGames.cs +++ b/src/Jackett.Common/Indexers/GazelleGames.cs @@ -237,7 +237,8 @@ namespace Jackett.Indexers { if (Row.ClassList.Contains("torrent")) { - throw new Exception("Unexpected torrent row found, please report this issue"); + // garbage rows + continue; } else if (Row.ClassList.Contains("group")) { @@ -292,6 +293,8 @@ namespace Jackett.Indexers continue; var Size = qSize.TextContent; + if (string.IsNullOrEmpty(Size)) // external links, example BlazBlue: Calamity Trigger Manual - Guide [GameDOX - External Link] + continue; release.Size = ReleaseInfo.GetBytes(Size); release.Link = new Uri(SiteLink + qDLLink.GetAttribute("href"));