socket-function 0.7.11 → 0.7.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "socket-function",
3
- "version": "0.7.11",
3
+ "version": "0.7.12",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "dependencies": {
@@ -107,7 +107,7 @@ async function createCallFactory(
107
107
  niceConnectionName += `(${fromPort})`;
108
108
  }
109
109
 
110
- let retriesEnabled = location.listeningPorts.length === 0;
110
+ let retriesEnabled = location.listeningPorts.length > 0;
111
111
 
112
112
  let lastReceivedSeqNum = 0;
113
113