Skip to content

Commit 6f9d250

Browse files
committed
Formatting
1 parent 1130984 commit 6f9d250

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ImageResizeWebApp/ImageResizeWebApp/Helpers/StorageHelper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ public static bool IsImage(IFormFile file)
2727
return formats.Any(item => file.FileName.EndsWith(item, StringComparison.OrdinalIgnoreCase));
2828
}
2929

30-
public static async Task<bool> UploadFileToStorage(Stream fileStream, string fileName, AzureStorageConfig _storageConfig)
30+
public static async Task<bool> UploadFileToStorage(Stream fileStream, string fileName,
31+
AzureStorageConfig _storageConfig)
3132
{
3233
// Create a URI to the blob
3334
Uri blobUri = new Uri("https://" +

0 commit comments

Comments
 (0)