mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #1372 from MediaBrowser/master
add tuner error handling
This commit is contained in:
commit
a7c7446bd0
@ -107,11 +107,18 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts
|
|||||||
|
|
||||||
foreach (var host in hosts)
|
foreach (var host in hosts)
|
||||||
{
|
{
|
||||||
var channels = await GetChannels(host, true, cancellationToken).ConfigureAwait(false);
|
try
|
||||||
|
|
||||||
if (channels.Any(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase)))
|
|
||||||
{
|
{
|
||||||
hostsWithChannel.Add(host);
|
var channels = await GetChannels(host, true, cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
|
if (channels.Any(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase)))
|
||||||
|
{
|
||||||
|
hostsWithChannel.Add(host);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.Error("Error getting channels", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -172,11 +179,18 @@ namespace MediaBrowser.Server.Implementations.LiveTv.TunerHosts
|
|||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(streamId))
|
if (string.IsNullOrWhiteSpace(streamId))
|
||||||
{
|
{
|
||||||
var channels = await GetChannels(host, true, cancellationToken).ConfigureAwait(false);
|
try
|
||||||
|
|
||||||
if (channels.Any(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase)))
|
|
||||||
{
|
{
|
||||||
hostsWithChannel.Add(host);
|
var channels = await GetChannels(host, true, cancellationToken).ConfigureAwait(false);
|
||||||
|
|
||||||
|
if (channels.Any(i => string.Equals(i.Id, channelId, StringComparison.OrdinalIgnoreCase)))
|
||||||
|
{
|
||||||
|
hostsWithChannel.Add(host);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Logger.Error("Error getting channels", ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (streamId.StartsWith(host.Id, StringComparison.OrdinalIgnoreCase))
|
else if (streamId.StartsWith(host.Id, StringComparison.OrdinalIgnoreCase))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user