From 7c12ca9192cbb9be7c87b99c19dfeeeb5a126025 Mon Sep 17 00:00:00 2001 From: Bsian Date: Wed, 25 Dec 2019 01:59:03 +0000 Subject: [PATCH] Fixes --- src/class/Util.ts | 2 +- src/functions/checkSS.ts | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/class/Util.ts b/src/class/Util.ts index 6e24fae..d4413c6 100644 --- a/src/class/Util.ts +++ b/src/class/Util.ts @@ -145,7 +145,7 @@ export default class Util { await this.exec(`chage -d0 ${username}`); const account = new this.client.db.Account({ - username, userID, emailAddress, createdBy: moderatorID, createdAt: new Date(), locked: false, ssInit: false, + username, userID, emailAddress, createdBy: moderatorID, createdAt: new Date(), locked: false, ssInit: false, homepath: `/home/${username}`, }); return account.save(); } diff --git a/src/functions/checkSS.ts b/src/functions/checkSS.ts index 4451bf5..0b132d6 100644 --- a/src/functions/checkSS.ts +++ b/src/functions/checkSS.ts @@ -11,7 +11,7 @@ export default function checkSS(client: Client) { for (const { userID, homepath } of hashes) { try { const hash = client.util.getAcctHash(homepath); - if (userID === '397432516010835970') client.getDMChannel(userID).then((c) => c.createMessage(hash)); + if (hash === null) throw new Error('Unable to locate auth file, homepath is probably incorrect'); await axios({ method: 'get', url: 'https://api.securesign.org/account/details', @@ -19,10 +19,6 @@ export default function checkSS(client: Client) { }); } catch (error) { const { status } = error.response; - if (userID === '397432516010835970') { - const hi = inspect(error.response, { depth: 0 }); - client.getDMChannel(userID).then((c) => c.createMessage(hi)); - } if (status === 400 || status === 401 || status === 403 || status === 404) { 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')).catch();