twitter-api-v2
Advanced tools
Comparing version 1.6.2 to 1.6.3
@@ -0,1 +1,5 @@ | ||
1.6.3 | ||
----- | ||
- Fix: Streams will know correctly reject `.connect` `Promise` on connection error if `autoReconnect` is `false` | ||
1.6.2 | ||
@@ -2,0 +6,0 @@ ----- |
@@ -198,3 +198,10 @@ "use strict"; | ||
}); | ||
this.makeAutoReconnectRetry(0); | ||
// Only make a reconnection attempt if autoReconnect is true! | ||
// Otherwise, let error be propagated | ||
if (this.autoReconnect) { | ||
this.makeAutoReconnectRetry(0); | ||
} | ||
else { | ||
throw e; | ||
} | ||
} | ||
@@ -201,0 +208,0 @@ return this; |
{ | ||
"name": "twitter-api-v2", | ||
"version": "1.6.2", | ||
"version": "1.6.3", | ||
"description": "Strongly typed, full-featured, light, versatile yet powerful Twitter API v1.1 and v2 client for Node.js.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
394637
8789