Skip to content

Commit 3a81351

Browse files
committed
Make default container name lowercase as capital letters are not allowed
1 parent 3ab4666 commit 3a81351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Samhammer.AzureBlobStorage/Client/DefaultAzureBlobStorageClientFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public BlobServiceClient GetClient(BlobClientOptions options = null)
2020

2121
public string GetDefaultContainerName()
2222
{
23-
return Options.Value.ContainerName;
23+
return Options.Value.ContainerName.ToLower();
2424
}
2525
}
2626

0 commit comments

Comments
 (0)