mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
erairaws: handled missing subtitles. resolves #15687
This commit is contained in:
@@ -265,6 +265,10 @@ namespace Jackett.Common.Indexers.Definitions
|
||||
var description = rssItem.SelectSingleNode("description")?.InnerText;
|
||||
var quality = rssItem.SelectSingleNode("erai:resolution", nsm)?.InnerText;
|
||||
var subs = rssItem.SelectSingleNode("erai:subtitles", nsm)?.InnerText;
|
||||
if (string.IsNullOrEmpty(subs))
|
||||
{
|
||||
subs = "[]";
|
||||
}
|
||||
|
||||
item = new RssFeedItem
|
||||
{
|
||||
|
Reference in New Issue
Block a user