We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4409e58 commit d126135Copy full SHA for d126135
lib/azure-blob-storage.js
@@ -58,7 +58,7 @@ module.exports = class AzureAttachmentsService extends require("./basic") {
58
})
59
60
this.containerName = creds.container_name
61
- this.blobServiceClient = new BlobServiceClient(creds.container_uri + "?" + creds.sas_token)
+ this.blobServiceClient = new BlobServiceClient(`${creds.container_uri}?${creds.sas_token}`)
62
this.containerClient = this.blobServiceClient.getContainerClient(creds.container_name)
63
64
logConfig.info('Azure Blob Storage client initialized successfully', {
0 commit comments