fix: make sure to not skip out on ENOENT

This commit is contained in:
iCrawl 2017-11-24 03:32:16 +01:00
parent a3a2e47f58
commit ff7e8a19ac
No known key found for this signature in database
GPG key ID: E41A6DB922EC2CFE

View file

@ -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}`);
});