mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
update to sqlite 3.17.0
This commit is contained in:
parent
03317b291d
commit
f6590ebf27
@ -16,7 +16,6 @@
|
|||||||
<SchemaVersion>2.0</SchemaVersion>
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\ServiceStack\ServiceStack.csproj" />
|
|
||||||
<ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
|
<ProjectReference Include="..\Emby.Drawing\Emby.Drawing.csproj" />
|
||||||
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
|
<ProjectReference Include="..\Emby.Photos\Emby.Photos.csproj" />
|
||||||
<ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
|
<ProjectReference Include="..\MediaBrowser.Api\MediaBrowser.Api.csproj" />
|
||||||
|
@ -56,9 +56,6 @@
|
|||||||
"Emby.Drawing": {
|
"Emby.Drawing": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
},
|
||||||
"ServiceStack": {
|
|
||||||
"target": "project"
|
|
||||||
},
|
|
||||||
"SocketHttpListener.Portable": {
|
"SocketHttpListener.Portable": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
}
|
}
|
||||||
@ -121,9 +118,6 @@
|
|||||||
},
|
},
|
||||||
"SocketHttpListener.Portable": {
|
"SocketHttpListener.Portable": {
|
||||||
"target": "project"
|
"target": "project"
|
||||||
},
|
|
||||||
"ServiceStack": {
|
|
||||||
"target": "project"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1477,12 +1477,7 @@ namespace Emby.Server.Implementations.LiveTv
|
|||||||
private DateTime _lastRecordingRefreshTime;
|
private DateTime _lastRecordingRefreshTime;
|
||||||
private async Task RefreshRecordings(CancellationToken cancellationToken)
|
private async Task RefreshRecordings(CancellationToken cancellationToken)
|
||||||
{
|
{
|
||||||
const int cacheMinutes = 3;
|
const int cacheMinutes = 2;
|
||||||
|
|
||||||
if ((DateTime.UtcNow - _lastRecordingRefreshTime).TotalMinutes < cacheMinutes)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
await _refreshRecordingsLock.WaitAsync(cancellationToken).ConfigureAwait(false);
|
await _refreshRecordingsLock.WaitAsync(cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user