Skip to content

Commit

Permalink
Merge pull request #1337 from DevBetterCom/ShadyNagy/log-added-vimeo
Browse files Browse the repository at this point in the history
fix the log
  • Loading branch information
ShadyNagy authored Dec 20, 2024
2 parents 1043a05 + 944a8e2 commit c13c675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DevBetterWeb.Core/Services/CreateVideoService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task<string> StartAsync(string videoName, long videoSize, string do
var responseSessionId = await _uploadVideoTusService.StartAsync(uploadVideoRequest, cancellationToken);
if (!responseSessionId.IsSuccess || string.IsNullOrEmpty(responseSessionId.Data))
{
_logger.LogError(new Exception(responseSessionId.Exception.Message), responseSessionId.Json);
_logger.LogError(new Exception(responseSessionId.Exception?.Message), responseSessionId.Json);
}

return responseSessionId.Data;
Expand Down

0 comments on commit c13c675

Please sign in to comment.