We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1043a05 commit 944a8e2Copy full SHA for 944a8e2
src/DevBetterWeb.Core/Services/CreateVideoService.cs
@@ -47,7 +47,7 @@ public async Task<string> StartAsync(string videoName, long videoSize, string do
47
var responseSessionId = await _uploadVideoTusService.StartAsync(uploadVideoRequest, cancellationToken);
48
if (!responseSessionId.IsSuccess || string.IsNullOrEmpty(responseSessionId.Data))
49
{
50
- _logger.LogError(new Exception(responseSessionId.Exception.Message), responseSessionId.Json);
+ _logger.LogError(new Exception(responseSessionId.Exception?.Message), responseSessionId.Json);
51
}
52
53
return responseSessionId.Data;
0 commit comments