botbuilder-instrumentation
Advanced tools
Comparing version 1.1.7 to 1.1.8
@@ -253,3 +253,3 @@ "use strict"; | ||
let message = {}; | ||
if (session instanceof builder.Session) { | ||
if (session.message) { | ||
message = session.message; | ||
@@ -256,0 +256,0 @@ } |
{ | ||
"name": "botbuilder-instrumentation", | ||
"version": "1.1.7", | ||
"version": "1.1.8", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/main.js", |
@@ -329,4 +329,4 @@ import * as util from 'util'; | ||
if (session instanceof builder.Session) { | ||
message = session.message; | ||
if ((<any>session).message) { | ||
message = (<any>session).message; | ||
} else { | ||
@@ -333,0 +333,0 @@ message = session; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
56616