Avoid returning null in static resource mapper Task

pull/9210/head
Bogdan 1 year ago
parent 2fcbac49c7
commit f20c260a4f

@ -50,7 +50,7 @@ namespace Radarr.Http.Frontend.Mappers
_logger.Warn("File {0} not found", filePath); _logger.Warn("File {0} not found", filePath);
return null; return Task.FromResult<IActionResult>(null);
} }
protected virtual Stream GetContentStream(string filePath) protected virtual Stream GetContentStream(string filePath)

Loading…
Cancel
Save