commit
35927af536
|
@ -13,6 +13,7 @@ using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using CommonIO;
|
using CommonIO;
|
||||||
using MediaBrowser.Controller.Channels;
|
using MediaBrowser.Controller.Channels;
|
||||||
|
using MediaBrowser.Controller.Entities.TV;
|
||||||
using MediaBrowser.Model.Channels;
|
using MediaBrowser.Model.Channels;
|
||||||
|
|
||||||
namespace MediaBrowser.Controller.Entities
|
namespace MediaBrowser.Controller.Entities
|
||||||
|
@ -882,6 +883,15 @@ namespace MediaBrowser.Controller.Entities
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (query.IsPlayed.HasValue)
|
||||||
|
{
|
||||||
|
if (query.IncludeItemTypes.Length == 1 && query.IncludeItemTypes.Contains(typeof(Series).Name))
|
||||||
|
{
|
||||||
|
Logger.Debug("Query requires post-filtering due to IsPlayed");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -81,6 +81,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
||||||
{typeof (ApplicationException), 500}
|
{typeof (ApplicationException), 500}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
HostConfig.Instance.GlobalResponseHeaders = new Dictionary<string, string>();
|
||||||
HostConfig.Instance.DebugMode = false;
|
HostConfig.Instance.DebugMode = false;
|
||||||
|
|
||||||
HostConfig.Instance.LogFactory = LogManager.LogFactory;
|
HostConfig.Instance.LogFactory = LogManager.LogFactory;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user