Comparing version 0.9.8 to 0.9.9
@@ -303,4 +303,8 @@ // Copyright (c) 2015 Uber Technologies, Inc. | ||
if (statusCode !== 200) { | ||
return callback(new Error( | ||
'Expected response 200 status code, received ' + statusCode + ' status code')); | ||
err = new Error( | ||
'Expected response 200 status code, received ' + statusCode + ' status code'); | ||
_.each(meta, function(value, key) { | ||
err[key] = value; | ||
}); | ||
return callback(err); | ||
} | ||
@@ -307,0 +311,0 @@ |
{ | ||
"name": "jetstream", | ||
"version": "0.9.8", | ||
"version": "0.9.9", | ||
"description": "Jetstream Sync server framework to sync local and remote models", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
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
505374
11308