We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59d9d4 commit 47e14dbCopy full SHA for 47e14db
packages/nativescript-websockets/bridge.android.ts
@@ -168,8 +168,8 @@ export class NativeBridge extends NativeBridgeDefinition {
168
}
169
this.ws._websocketOpen(param1.protocol().toString());
170
171
- public onClosing(param0: okhttp3.WebSocket, param1: number, param2: string): void {
172
- //
+ public onClosing(websocket: okhttp3.WebSocket, code: number, reason: string): void {
+ websocket.close(code, reason);
173
174
175
private isCorrectThread() {
0 commit comments