Skip to content

Commit 4e66064

Browse files
committed
fix: remove public access type from blob container creation
1 parent 27d931b commit 4e66064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shared/ImageUploadHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static async Task<ImageInfo> ProcessAndUploadImageAsync(string imagePath,
1616

1717
// Get or create container
1818
var containerClient = blobServiceClient.GetBlobContainerClient(containerName);
19-
await containerClient.CreateIfNotExistsAsync(PublicAccessType.Blob);
19+
await containerClient.CreateIfNotExistsAsync();
2020

2121
// Process image and get metadata
2222
using var image = await Image.LoadAsync(imagePath);

0 commit comments

Comments
 (0)