Comparing version 1.3.6 to 1.3.7
{ | ||
"name": "keuss", | ||
"version": "1.3.6", | ||
"version": "1.3.7", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "queue", |
@@ -277,3 +277,3 @@ 'use strict'; | ||
consumer_data.callback ({ | ||
if (consumer_data.callback) consumer_data.callback ({ | ||
timeout: true, | ||
@@ -432,3 +432,3 @@ tid: consumer_data.tid, | ||
// call final callback | ||
consumer.callback (err); | ||
if (consumer.callback) consumer.callback (err); | ||
return; | ||
@@ -483,3 +483,3 @@ } | ||
// call final callback | ||
consumer.callback (null, result); | ||
if (consumer.callback) consumer.callback (null, result); | ||
return; | ||
@@ -486,0 +486,0 @@ }; |
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
187985