Add messages to LiveTvConflict exception

This commit is contained in:
Cody Robibero 2024-06-27 23:05:45 -04:00
parent 79e9fe112c
commit c46a50ace9
3 changed files with 2 additions and 6 deletions

View file

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

View file

@ -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)

View file

@ -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)