Skip to content

Commit

Permalink
Merge pull request #1791 from ably/fix-error-text
Browse files Browse the repository at this point in the history
Fix error text
  • Loading branch information
VeskeR authored Jun 19, 2024
2 parents 97fba72 + 5a8f8e9 commit 5682dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/lib/transport/connectionmanager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@ class ConnectionManager extends EventEmitter {
this.cancelWebSocketGiveUpTimer();
this.notifyState({
state: 'disconnected',
error: new ErrorInfo("new ErrorInfo('Unable to connect (network unreachable)'", 80003, 404),
error: new ErrorInfo('Unable to connect (network unreachable)', 80003, 404),
});
} else {
Logger.logAction(
Expand Down

0 comments on commit 5682dca

Please sign in to comment.