Merge pull request #12185 from crobibero/live-tv-conflict-exception

Add messages to LiveTvConflict exception
pull/12221/head
Bond-009 9 months ago committed by GitHub
commit 6225b92da0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,10 +9,6 @@ namespace MediaBrowser.Controller.LiveTv
/// </summary>
public class LiveTvConflictException : Exception
{
public LiveTvConflictException()
{
}
public LiveTvConflictException(string message)
: base(message)
{

@ -219,7 +219,7 @@ namespace Jellyfin.LiveTv.TunerHosts
}
}
throw new LiveTvConflictException();
throw new LiveTvConflictException("Unable to find host to play channel");
}
protected virtual bool IsValidChannelId(string channelId)

@ -145,7 +145,7 @@ namespace Jellyfin.LiveTv.TunerHosts.HdHomerun
}
_activeTuner = -1;
throw new LiveTvConflictException();
throw new LiveTvConflictException("No tuners available");
}
public async Task ChangeChannel(IHdHomerunChannelCommands commands, CancellationToken cancellationToken)

Loading…
Cancel
Save