added fifth priority level
This commit is contained in:
parent
c137525e17
commit
b405b8f80b
|
@ -29,10 +29,12 @@ namespace MediaBrowser.Controller.Providers
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Fourth = 4,
|
Fourth = 4,
|
||||||
|
|
||||||
|
Fifth = 5,
|
||||||
|
|
||||||
// Run this provider last
|
// Run this provider last
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The last
|
/// The last
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Last = 5
|
Last = 6
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -65,7 +65,7 @@ namespace MediaBrowser.Providers.Movies
|
||||||
/// <value>The priority.</value>
|
/// <value>The priority.</value>
|
||||||
public override MetadataProviderPriority Priority
|
public override MetadataProviderPriority Priority
|
||||||
{
|
{
|
||||||
get { return MetadataProviderPriority.Last; }
|
get { return MetadataProviderPriority.Fifth; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -110,7 +110,7 @@ namespace MediaBrowser.Providers.Movies
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
// Run after moviedb and xml providers
|
// Run after moviedb and xml providers
|
||||||
return MetadataProviderPriority.Last;
|
return MetadataProviderPriority.Fifth;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user