mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
core: Apply declarations styles (#7166)
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Jackett.Common.Indexers
|
||||
|
||||
private new ConfigurationData configData
|
||||
{
|
||||
get { return (ConfigurationData)base.configData; }
|
||||
get { return base.configData; }
|
||||
set { base.configData = value; }
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ namespace Jackett.Common.Indexers
|
||||
release.Comments = new Uri(node.SelectSingleNode("link").InnerText);
|
||||
|
||||
// Try to guess the category... I'm not proud of myself...
|
||||
int category = 5030;
|
||||
var category = 5030;
|
||||
if (serie_title.Contains("720p"))
|
||||
category = 5040;
|
||||
release.Category = new List<int> { category };
|
||||
|
Reference in New Issue
Block a user