diff --git a/src/extension.ts b/src/extension.ts index 025c271..53bc639 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -82,7 +82,7 @@ function initRPC(clientID: string): void { // Log in to the RPC Client, and check whether or not it errors. rpc.login(clientID).catch(error => { - if (reconnect) return; + if (reconnect && !error.message.includes('ENOENT')) return; if (error.message.includes('ENOENT')) window.showErrorMessage('No Discord Client detected!'); else window.showErrorMessage(`Could not connect to discord via rpc: ${error.message}`); });