Skip to content

Commit e66911a

Browse files
author
Tom Laird-McConnell
authored
Merge branch 'master' into tomlm/swagger0718
2 parents e5e990f + 68075b6 commit e66911a

28 files changed

+2186
-1918
lines changed

libraries/botbuilder-azure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"typings": "./lib/index.d.ts",
2323
"dependencies": {
2424
"@types/node": "^9.3.0",
25-
"azure-storage": "^2.3.0",
25+
"azure-storage": "^2.10.2",
2626
"botbuilder": "^4.0.0",
2727
"documentdb": "1.14.5",
2828
"flat": "^4.0.0",

libraries/botbuilder-azure/src/azureBlobTranscriptStore.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,7 @@ export class AzureBlobTranscriptStore implements TranscriptStore {
386386
getBlobToTextAsync: this.denodeify(blobService, blobService.getBlobToText),
387387
deleteBlobIfExistsAsync: this.denodeify(blobService, blobService.deleteBlobIfExists),
388388
listBlobsSegmentedWithPrefixAsync: this.denodeify(blobService, blobService.listBlobsSegmentedWithPrefix),
389-
// tslint:disable-next-line:no-string-literal
390-
listBlobDirectoriesSegmentedWithPrefixAsync: this.denodeify(blobService, blobService['listBlobDirectoriesSegmentedWithPrefix'])
389+
listBlobDirectoriesSegmentedWithPrefixAsync: this.denodeify(blobService, blobService.listBlobDirectoriesSegmentedWithPrefix)
391390
});
392391
}
393392

0 commit comments

Comments
 (0)