mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
fixed quality link to series
This commit is contained in:
parent
2a603d908f
commit
38712c7e5f
1 changed files with 3 additions and 3 deletions
|
@ -41,7 +41,7 @@ public string SonicAllowed
|
|||
|
||||
foreach (var q in Allowed)
|
||||
{
|
||||
result += (int) q + "|";
|
||||
result += (int)q + "|";
|
||||
}
|
||||
return result.Trim('|');
|
||||
}
|
||||
|
@ -51,12 +51,12 @@ private set
|
|||
Allowed = new List<QualityTypes>(qualities.Length);
|
||||
foreach (var quality in qualities)
|
||||
{
|
||||
Allowed.Add((QualityTypes) Convert.ToInt32(quality));
|
||||
Allowed.Add((QualityTypes)Convert.ToInt32(quality));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[SubSonicToManyRelation]
|
||||
public virtual List<string> Series { get; private set; }
|
||||
public virtual List<Series> Series { get; private set; }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue