update tv db cleanup

pull/702/head
Luke Pulverenti 9 years ago
parent e62270df35
commit bbaf88ae1f

@ -107,7 +107,7 @@ namespace MediaBrowser.Controller.Persistence
/// </summary>
/// <param name="type">The type.</param>
/// <returns>IEnumerable{Guid}.</returns>
IEnumerable<string> GetItemsOfType(Type type);
IEnumerable<Guid> GetItemsOfType(Type type);
/// <summary>
/// Saves the children.

@ -134,11 +134,6 @@ namespace MediaBrowser.Dlna.PlayTo
}
}
private string GetServerAddress()
{
return _serverAddress;
}
async void _device_MediaChanged(object sender, MediaChangedEventArgs e)
{
try

@ -25,14 +25,14 @@ namespace MediaBrowser.Server.Implementations.HttpServer.Security
{
var authorization = _authContext.GetAuthorizationInfo(requestContext);
if (!string.IsNullOrWhiteSpace(authorization.Token))
{
var auth = GetTokenInfo(requestContext);
if (auth != null)
{
return _sessionManager.GetSessionByAuthenticationToken(auth, authorization.DeviceId, requestContext.RemoteIp, authorization.Version);
}
}
//if (!string.IsNullOrWhiteSpace(authorization.Token))
//{
// var auth = GetTokenInfo(requestContext);
// if (auth != null)
// {
// return _sessionManager.GetSessionByAuthenticationToken(auth, authorization.DeviceId, requestContext.RemoteIp, authorization.Version);
// }
//}
var session = _sessionManager.GetSession(authorization.DeviceId, authorization.Client, authorization.Version);
return Task.FromResult(session);

@ -1115,7 +1115,7 @@ namespace MediaBrowser.Server.Implementations.LiveTv
{
cancellationToken.ThrowIfCancellationRequested();
if (!currentIdList.Contains(new Guid(programId)))
if (!currentIdList.Contains(programId))
{
var program = _libraryManager.GetItemById(programId);

@ -521,8 +521,8 @@ namespace MediaBrowser.Server.Implementations.Persistence
}
}
}
public IEnumerable<string> GetItemsOfType(Type type)
public IEnumerable<Guid> GetItemsOfType(Type type)
{
if (type == null)
{
@ -541,7 +541,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
{
while (reader.Read())
{
yield return reader.GetString(0);
yield return reader.GetGuid(0);
}
}
}

@ -125,7 +125,7 @@ namespace MediaBrowser.Server.Implementations.Photos
protected abstract Task<List<BaseItem>> GetItemsWithImages(IHasImages item);
private const string Version = "3";
private const string Version = "4";
protected string GetConfigurationCacheKey(List<BaseItem> items, string itemName)
{
var parts = Version + "_" + (itemName ?? string.Empty) + "_" +

@ -41,17 +41,25 @@ namespace MediaBrowser.Server.Implementations.Session
}
private bool _isActive;
private DateTime _lastActivityDate;
public bool IsSessionActive
{
get
{
return HasOpenSockets;
if (HasOpenSockets)
{
return true;
}
//return false;
return _isActive && (DateTime.UtcNow - _lastActivityDate).TotalMinutes <= 10;
}
}
public void OnActivity()
{
_isActive = true;
_lastActivityDate = DateTime.UtcNow;
}
private IEnumerable<IWebSocketConnection> GetActiveSockets()

Loading…
Cancel
Save