Better error handling
parent
66d28e4e75
commit
4549da9ba3
|
@ -23,10 +23,14 @@ export default function checkSS(client: Client) {
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (!hash) return;
|
if (!hash) return;
|
||||||
const { status } = error.response;
|
try {
|
||||||
if (status === 400 || status === 401 || status === 403 || status === 404) {
|
const { status } = error.response;
|
||||||
await client.db.Account.updateOne({ userID }, { $set: { hash: false } });
|
if (status === 400 || status === 401 || status === 403 || status === 404) {
|
||||||
client.getDMChannel(userID).then((channel) => channel.createMessage('Your SecureSign password has been reset - please reinitialize your SecureSign account. Run `=securesign init` for more information')).catch();
|
await client.db.Account.updateOne({ userID }, { $set: { hash: false } });
|
||||||
|
client.getDMChannel(userID).then((channel) => channel.createMessage('Your SecureSign password has been reset - please reinitialize your SecureSign account. Run `=securesign init` for more information')).catch();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue