fix linter issues
Some checks failed
API report (misskey.js) / report (pull_request) Successful in 2m40s
Test (backend) / unit (22.x) (pull_request) Successful in 3m59s
Test (frontend) / vitest (22.x) (pull_request) Successful in 1m43s
Test (misskey.js) / test (22.x) (pull_request) Successful in 1m8s
Test (production install and build) / production (22.x) (pull_request) Successful in 1m20s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 2m1s
Test (backend) / e2e (22.x) (pull_request) Successful in 6m56s
Lint / pnpm_install (pull_request) Successful in 3m48s
Lint / lint (backend) (pull_request) Successful in 1m31s
Lint / lint (misskey-js) (pull_request) Successful in 1m47s
Lint / lint (sw) (pull_request) Successful in 1m22s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m45s
Lint / lint (frontend) (pull_request) Successful in 8m54s
Lint / typecheck (backend) (pull_request) Failing after 1m14s
Some checks failed
API report (misskey.js) / report (pull_request) Successful in 2m40s
Test (backend) / unit (22.x) (pull_request) Successful in 3m59s
Test (frontend) / vitest (22.x) (pull_request) Successful in 1m43s
Test (misskey.js) / test (22.x) (pull_request) Successful in 1m8s
Test (production install and build) / production (22.x) (pull_request) Successful in 1m20s
Test (backend) / validate-api-json (22.x) (pull_request) Successful in 2m1s
Test (backend) / e2e (22.x) (pull_request) Successful in 6m56s
Lint / pnpm_install (pull_request) Successful in 3m48s
Lint / lint (backend) (pull_request) Successful in 1m31s
Lint / lint (misskey-js) (pull_request) Successful in 1m47s
Lint / lint (sw) (pull_request) Successful in 1m22s
Lint / typecheck (misskey-js) (pull_request) Successful in 1m45s
Lint / lint (frontend) (pull_request) Successful in 8m54s
Lint / typecheck (backend) (pull_request) Failing after 1m14s
This commit is contained in:
parent
b8a938ace8
commit
1090365cc0
3 changed files with 7 additions and 7 deletions
|
@ -166,7 +166,7 @@ export class EmailService {
|
|||
|
||||
const emailTemplateSource = meta.emailTemplate ?? EmailService.defaultEmailTemplate;
|
||||
// console.log(handlebar.)
|
||||
const template = handlebars.compile(emailTemplateSource)
|
||||
const template = handlebars.compile(emailTemplateSource);
|
||||
|
||||
const htmlToSend = template({
|
||||
subject,
|
||||
|
@ -175,7 +175,7 @@ export class EmailService {
|
|||
logo: meta.logoImageUrl ?? meta.iconUrl ?? iconUrl,
|
||||
url: this.config.url,
|
||||
host: this.config.host,
|
||||
})
|
||||
});
|
||||
|
||||
const transporter = nodemailer.createTransport({
|
||||
host: meta.smtpHost,
|
||||
|
|
Loading…
Reference in a new issue