1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-25 22:37:27 -04:00

New: Use languages from Torznab/Newznab attributes if given

This commit is contained in:
Qstick
2023-04-23 18:11:43 -05:00
parent 9bef430635
commit efd4abfa3e
7 changed files with 141 additions and 16 deletions
@@ -1,11 +1,18 @@
using System;
using System.Collections.Generic;
using System.Text;
using NzbDrone.Core.Indexers;
using NzbDrone.Core.Languages;
namespace NzbDrone.Core.Parser.Model
{
public class ReleaseInfo
{
public ReleaseInfo()
{
Languages = new List<Language>();
}
public string Guid { get; set; }
public string Title { get; set; }
public long Size { get; set; }
@@ -27,6 +34,7 @@ namespace NzbDrone.Core.Parser.Model
public string Resolution { get; set; }
public IndexerFlags IndexerFlags { get; set; }
public List<Language> Languages { get; set; }
public int Age
{