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

Commit

Permalink
chore: Fix empty block
Browse files Browse the repository at this point in the history
  • Loading branch information
qdot committed Oct 5, 2019
1 parent 0d9a8a7 commit c4c2ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ButtplugPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class ButtplugPanel extends Vue {
this.client.addListener("scanningfinished", this.OnScanningFinished);
this.client.addListener("disconnect", this.RemoveListeners);
try {
await this.client.Connect(aConnector).catch((e) => {});
await this.client.Connect(aConnector).catch((e) => { return; });
} catch (e) {
this.RemoveListeners();
return Promise.reject("test");
Expand Down

0 comments on commit c4c2ce9

Please sign in to comment.