commit
5199fea8e6
|
@ -176,7 +176,8 @@ namespace Emby.Common.Implementations
|
||||||
|
|
||||||
public PackageVersionClass SystemUpdateLevel
|
public PackageVersionClass SystemUpdateLevel
|
||||||
{
|
{
|
||||||
get {
|
get
|
||||||
|
{
|
||||||
|
|
||||||
#if BETA
|
#if BETA
|
||||||
return PackageVersionClass.Beta;
|
return PackageVersionClass.Beta;
|
||||||
|
@ -565,7 +566,10 @@ namespace Emby.Common.Implementations
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return assembly.GetTypes();
|
// This null checking really shouldn't be needed but adding it due to some
|
||||||
|
// unhandled exceptions in mono 5.0 that are a little hard to hunt down
|
||||||
|
var types = assembly.GetTypes() ?? new Type[] { };
|
||||||
|
return types.Where(t => t != null);
|
||||||
}
|
}
|
||||||
catch (ReflectionTypeLoadException ex)
|
catch (ReflectionTypeLoadException ex)
|
||||||
{
|
{
|
||||||
|
@ -578,7 +582,14 @@ namespace Emby.Common.Implementations
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it fails we can still get a list of the Types it was able to resolve
|
// If it fails we can still get a list of the Types it was able to resolve
|
||||||
return ex.Types.Where(t => t != null);
|
var types = ex.Types ?? new Type[] { };
|
||||||
|
return types.Where(t => t != null);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.ErrorException("Error loading types from assembly", ex);
|
||||||
|
|
||||||
|
return new List<Type>();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
5
Emby.Server.Implementations/Localization/Ratings/es.txt
Normal file
5
Emby.Server.Implementations/Localization/Ratings/es.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
ES-A,1
|
||||||
|
ES-7,3
|
||||||
|
ES-12,6
|
||||||
|
ES-16,8
|
||||||
|
ES-18,11
|
|
@ -57,6 +57,22 @@ namespace MediaBrowser.Controller.Entities
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
|
var extraType = ExtraType;
|
||||||
|
if (extraType.HasValue)
|
||||||
|
{
|
||||||
|
if (extraType.Value == Model.Entities.ExtraType.Sample)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (extraType.Value == Model.Entities.ExtraType.ThemeVideo)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (extraType.Value == Model.Entities.ExtraType.Trailer)
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,9 +105,12 @@ namespace MediaBrowser.Model.Sync
|
||||||
public string PrimaryImageItemId { get; set; }
|
public string PrimaryImageItemId { get; set; }
|
||||||
public string PrimaryImageTag { get; set; }
|
public string PrimaryImageTag { get; set; }
|
||||||
|
|
||||||
|
public bool EnableAutomaticResync { get; set; }
|
||||||
|
|
||||||
public SyncJob()
|
public SyncJob()
|
||||||
{
|
{
|
||||||
RequestedItemIds = new List<string>();
|
RequestedItemIds = new List<string>();
|
||||||
|
EnableAutomaticResync = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -196,8 +196,6 @@ namespace MediaBrowser.Providers.TV
|
||||||
}
|
}
|
||||||
catch (HttpException ex)
|
catch (HttpException ex)
|
||||||
{
|
{
|
||||||
Logger.Error("No metadata found for {0}", seasonNumber.Value);
|
|
||||||
|
|
||||||
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
|
if (ex.StatusCode.HasValue && ex.StatusCode.Value == HttpStatusCode.NotFound)
|
||||||
{
|
{
|
||||||
return result;
|
return result;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.2.23.1")]
|
[assembly: AssemblyVersion("3.2.24.1")]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user