diff --git a/api/ExpressedRealms.Server/Program.cs b/api/ExpressedRealms.Server/Program.cs index a5a08db..786e672 100644 --- a/api/ExpressedRealms.Server/Program.cs +++ b/api/ExpressedRealms.Server/Program.cs @@ -60,7 +60,7 @@ builder.Host.UseSerilog(); // Since we are in a container, we need to keep track of the data keys manually - string blobStorageEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT") ?? ""; + var blobStorageEndpoint = Environment.GetEnvironmentVariable("AZURE_STORAGEBLOB_RESOURCEENDPOINT") ?? ""; if (!string.IsNullOrEmpty(blobStorageEndpoint)) { var blobServiceClient = new BlobServiceClient(new Uri(blobStorageEndpoint), new DefaultAzureCredential());