Change default connect options

This commit is contained in:
Adhiraj Singh
2020-10-15 16:53:48 +05:30
parent e2d5fb1a25
commit 6391e37198
3 changed files with 6 additions and 4 deletions

View File

@@ -101,13 +101,15 @@ conn.connectOptions = {
*/
waitOnlyForLastMessage?: false
/** max time for the phone to respond to a connectivity test */
phoneResponseTime?: 7500
phoneResponseTime?: 10_000
/** minimum time between new connections */
connectCooldownMs?: 3000
/** agent used for WS connections (could be a proxy agent) */
agent?: Agent = undefined
/** agent used for fetch requests -- uploading/downloading media */
fetchAgent?: Agent = undefined
/** always uses takeover for connecting */
alwaysUseTakeover: true
} as WAConnectOptions
```