update to sqlite 3.17.0

This commit is contained in:
Luke Pulverenti
2017-02-16 02:39:57 -05:00
parent 03317b291d
commit f6590ebf27
3 changed files with 1 additions and 13 deletions

View File

@@ -1477,12 +1477,7 @@ namespace Emby.Server.Implementations.LiveTv
private DateTime _lastRecordingRefreshTime;
private async Task RefreshRecordings(CancellationToken cancellationToken)
{
const int cacheMinutes = 3;
if ((DateTime.UtcNow - _lastRecordingRefreshTime).TotalMinutes < cacheMinutes)
{
return;
}
const int cacheMinutes = 2;
await _refreshRecordingsLock.WaitAsync(cancellationToken).ConfigureAwait(false);