Update Jellyfin.Plugin.NextPVR/LiveTvService.cs

Co-authored-by: BaronGreenback <jimcartlidge@yahoo.co.uk>
This commit is contained in:
Cody Robibero 2020-11-30 09:28:32 -07:00 committed by GitHub
parent 96b6d5c045
commit 95105d98f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -361,7 +361,7 @@ namespace Jellyfin.Plugin.NextPVR
bool? error = new CancelDeleteRecordingResponse().RecordingError(stream, _jsonSerializer, _logger);
if (error == null || error == true)
{
_logger.LogError(string.Format("[NextPVR] Failed to create or update the timer with Recurring ID: {0}", info.Id));
_logger.LogError("[NextPVR] Failed to create or update the timer with Recurring ID: {0}", info.Id);
throw new Exception(string.Format("Failed to create or update the timer with Recurring ID: {0}", info.Id));
}