Skip to content

Commit

Permalink
feat: swap condition around
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Oct 9, 2022
1 parent 6c24612 commit 1eeafac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const activate = async (ctx: ExtensionContext) => {
ListenerController.reset();

await logInfo(
`Currently ${ClientController.rpc.isConnected ? "not connected" : "connected"} to Discord Gateway!`
`Currently ${ClientController.rpc.isConnected ? "connected" : "not connected"} to Discord Gateway!`
);
});

Expand Down

0 comments on commit 1eeafac

Please sign in to comment.