Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/commit/0980fa54f9fc3bdfae6c57fa5a20ce3b2a88a677?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

fix(email): correctly log errors when emails fail to send

pull/470/head
sct 4 years ago
parent 32b4c99950
commit 0980fa54f9

@ -113,7 +113,7 @@ class EmailAgent
try {
const email = this.getNewEmail();
email.send({
await email.send({
template: path.join(
__dirname,
'../../../templates/email/media-request'
@ -150,7 +150,7 @@ class EmailAgent
try {
const email = this.getNewEmail();
email.send({
await email.send({
template: path.join(
__dirname,
'../../../templates/email/media-request'
@ -187,7 +187,7 @@ class EmailAgent
try {
const email = this.getNewEmail();
email.send({
await email.send({
template: path.join(__dirname, '../../../templates/email/test-email'),
message: {
to: payload.notifyUser.email,

Loading…
Cancel
Save