Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 8f1252f

Browse files
committed
chore: Fix empty block
1 parent bb743b8 commit 8f1252f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ButtplugPanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export default class ButtplugPanel extends Vue {
163163
this.client.addListener("scanningfinished", this.OnScanningFinished);
164164
this.client.addListener("disconnect", this.RemoveListeners);
165165
try {
166-
await this.client.Connect(aConnector).catch((e) => {});
166+
await this.client.Connect(aConnector).catch((e) => { return; });
167167
} catch (e) {
168168
this.RemoveListeners();
169169
return Promise.reject("test");

0 commit comments

Comments
 (0)