Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneP-Zello committed Jul 9, 2024
1 parent c6cb0f6 commit dd71858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/js/src/classes/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ session.connect(function(err, result) {
dfd.resolve(result);
})
.catch((err) => {
this.disconnect() // this prevents reconnect on ws.close event
this.disconnect(); // this prevents reconnect on ws.close event
if (this.connectAttempts) {
this.clearExistingReconnectTimeout();
this.reconnectTimeout = setTimeout(() => {
Expand Down

0 comments on commit dd71858

Please sign in to comment.