Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbang committed Sep 26, 2020
1 parent 3c58a37 commit ac12fdc
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 1 deletion.
Binary file modified gene-pool-backend/.vs/gene-pool-backend/v16/.suo
Binary file not shown.
3 changes: 2 additions & 1 deletion gene-pool-backend/BlobStorageHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,10 @@ public async Task<string[]> TranscribeBlobAsync() {

Console.WriteLine($"Transcribing {wavname}");

BlobDownloadInfo download;
try {
BlobClient blobClient = containerClient.GetBlobClient(wavname);
BlobDownloadInfo download = await blobClient.DownloadAsync();
download = await blobClient.DownloadAsync();
} catch {
return new string[1];
}
Expand Down
Binary file modified gene-pool-backend/bin/Debug/netcoreapp3.1/gene-pool-backend.dll
Binary file not shown.
Binary file modified gene-pool-backend/bin/Debug/netcoreapp3.1/gene-pool-backend.pdb
Binary file not shown.
Binary file not shown.
Binary file modified gene-pool-backend/obj/Debug/netcoreapp3.1/gene-pool-backend.dll
Binary file not shown.
Binary file modified gene-pool-backend/obj/Debug/netcoreapp3.1/gene-pool-backend.pdb
Binary file not shown.

0 comments on commit ac12fdc

Please sign in to comment.