commit
50ecda3d18
|
@ -142,9 +142,12 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||
{
|
||||
var response = JsonSerializer.DeserializeFromStream<DiscoverResponse>(stream);
|
||||
|
||||
lock (_modelCache)
|
||||
if (!string.IsNullOrWhiteSpace(info.Id))
|
||||
{
|
||||
_modelCache[info.Id] = response;
|
||||
lock (_modelCache)
|
||||
{
|
||||
_modelCache[info.Id] = response;
|
||||
}
|
||||
}
|
||||
|
||||
return response;
|
||||
|
@ -159,10 +162,13 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts.HdHomerun
|
|||
{
|
||||
ModelNumber = defaultValue
|
||||
};
|
||||
// HDHR4 doesn't have this api
|
||||
lock (_modelCache)
|
||||
if (!string.IsNullOrWhiteSpace(info.Id))
|
||||
{
|
||||
_modelCache[info.Id] = response;
|
||||
// HDHR4 doesn't have this api
|
||||
lock (_modelCache)
|
||||
{
|
||||
_modelCache[info.Id] = response;
|
||||
}
|
||||
}
|
||||
return response;
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
using System.Reflection;
|
||||
|
||||
[assembly: AssemblyVersion("3.2.5.4")]
|
||||
[assembly: AssemblyVersion("3.2.5.5")]
|
||||
|
|
Loading…
Reference in New Issue
Block a user