Skip to content

Commit

Permalink
forgot to commit change
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbang committed Sep 26, 2020
1 parent ba75ef5 commit e0f1939
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gene-pool-backend/BlobStorageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ public async Task<int> UploadLinkToBlobAsync(string url) {
Debug.WriteLine("I got here 1");

FileHelper.SaveVideoToDisk(url, mp4file);
if (!FileHelper.ToWavFormat(mp4file, wavfile)) {
return 2;
int res = FileHelper.ToWavFormat(mp4file, wavfile);

if (res != 0) {
return res;
}

// Create the container and return a container client object
Expand Down

0 comments on commit e0f1939

Please sign in to comment.