Suppress errors

This commit is contained in:
syuilo 2019-04-13 04:00:02 +09:00
parent 063f372f3c
commit a51fbd7316
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 3 additions and 3 deletions

View file

@ -76,12 +76,12 @@ export default define(meta, async (ps, user) => {
user: meta.smtpUser,
pass: meta.smtpPass
} : undefined
});
} as any);
const link = `${config.url}/verify-email/${code}`;
transporter.sendMail({
from: meta.email,
from: meta.email!,
to: ps.email,
subject: meta.name || 'Misskey',
text: `To verify email, please click this link: ${link}`

View file

@ -96,7 +96,7 @@ export default async (ctx: Koa.BaseContext) => {
cipher: undefined,
passphrase: undefined
}
}, (e, publicKey, privateKey) =>
} as any, (e, publicKey, privateKey) =>
e ? j(e) : s([publicKey, privateKey])
));