mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Fixed critical alerts sending to admin users
refs https://github.com/TryGhost/Team/issues/726 - The refed feature got broken during the refactors. Even though this area is covered by unit tests the "this context" testing should probably done on an integration test level, which we don't have a clear pattern for just yet
This commit is contained in:
parent
f08a55c21f
commit
4f73d9ae9d
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ module.exports = async () => {
|
|||
ghostVersion: ghostVersion.original
|
||||
},
|
||||
request,
|
||||
sendEmail: ghostMailer.send
|
||||
sendEmail: ghostMailer.send.bind(ghostMailer)
|
||||
});
|
||||
|
||||
await updateChecker.check();
|
||||
|
|
Loading…
Add table
Reference in a new issue