mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
Enable all analyzers to default back to our rules
This commit is contained in:
@@ -351,7 +351,7 @@ public class ShazbatParser : IParseIndexerResponse
|
||||
|
||||
private static string ParseTitle(IElement titleRow)
|
||||
{
|
||||
var title = titleRow?.ChildNodes.First(n => n.NodeType == NodeType.Text && n.TextContent.Trim() != string.Empty);
|
||||
var title = titleRow?.ChildNodes.First(n => n.NodeType == NodeType.Text && n.TextContent.Trim().IsNotNullOrWhiteSpace());
|
||||
|
||||
return title?.TextContent.Trim();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user