Increase websocket connection attemp timeout. Fix typos.

This commit is contained in:
Reckless_Satoshi 2022-08-23 11:57:57 -07:00
parent 7b51f4dfe4
commit f2f6309ed1
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class Chat extends Component {
scrollNow:false, scrollNow:false,
}; };
rws = new ReconnectingWebSocket('ws://' + window.location.host + '/ws/chat/' + this.props.orderId + '/'); rws = new ReconnectingWebSocket('ws://' + window.location.host + '/ws/chat/' + this.props.orderId + '/', [], {connectionTimeout: 15000});
componentDidMount() { componentDidMount() {
this.rws.addEventListener('open', () => { this.rws.addEventListener('open', () => {

View File

@ -1,4 +1,4 @@
# RoboSats app for soverign nodes. # RoboSats client app for sovereign nodes
RoboSats app for soverign nodes ( Umbrel, Citadel, Start9 ...). This app serves the RoboSats frontend app directly from your own node and redirects all API requests to RoboSats P2P market coordinator through your node's TOR proxy. RoboSats app for soverign nodes ( Umbrel, Citadel, Start9 ...). This app serves the RoboSats frontend app directly from your own node and redirects all API requests to RoboSats P2P market coordinator through your node's TOR proxy.