mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 07:45:26 +03:00
3.2.5.5
This commit is contained in:
@@ -142,10 +142,13 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||||||
{
|
{
|
||||||
var response = JsonSerializer.DeserializeFromStream<DiscoverResponse>(stream);
|
var response = JsonSerializer.DeserializeFromStream<DiscoverResponse>(stream);
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(info.Id))
|
||||||
|
{
|
||||||
lock (_modelCache)
|
lock (_modelCache)
|
||||||
{
|
{
|
||||||
_modelCache[info.Id] = response;
|
_modelCache[info.Id] = response;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
@@ -159,11 +162,14 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||||||
{
|
{
|
||||||
ModelNumber = defaultValue
|
ModelNumber = defaultValue
|
||||||
};
|
};
|
||||||
|
if (!string.IsNullOrWhiteSpace(info.Id))
|
||||||
|
{
|
||||||
// HDHR4 doesn't have this api
|
// HDHR4 doesn't have this api
|
||||||
lock (_modelCache)
|
lock (_modelCache)
|
||||||
{
|
{
|
||||||
_modelCache[info.Id] = response;
|
_modelCache[info.Id] = response;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.2.5.4")]
|
[assembly: AssemblyVersion("3.2.5.5")]
|
||||||
|
|||||||
Reference in New Issue
Block a user