diff options
author | Chocobozzz <me@florianbigard.com> | 2022-08-08 15:48:17 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-08-09 09:18:07 +0200 |
commit | bd911b54b555b11df7e9849cf92d358bccfecf6e (patch) | |
tree | 23e94b4acbe6819fedc1cb5e067b700cbdd880c3 /server/lib/notifier/notifier.ts | |
parent | 5a921e7b74910414626bfc9672b857e987e3ebed (diff) | |
download | PeerTube-bd911b54b555b11df7e9849cf92d358bccfecf6e.tar.gz PeerTube-bd911b54b555b11df7e9849cf92d358bccfecf6e.tar.zst PeerTube-bd911b54b555b11df7e9849cf92d358bccfecf6e.zip |
Use bullmq job dependency
Diffstat (limited to 'server/lib/notifier/notifier.ts')
-rw-r--r-- | server/lib/notifier/notifier.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/notifier/notifier.ts b/server/lib/notifier/notifier.ts index d1c4c0215..66cfc31c4 100644 --- a/server/lib/notifier/notifier.ts +++ b/server/lib/notifier/notifier.ts | |||
@@ -242,7 +242,7 @@ class Notifier { | |||
242 | 242 | ||
243 | for (const to of toEmails) { | 243 | for (const to of toEmails) { |
244 | const payload = await object.createEmail(to) | 244 | const payload = await object.createEmail(to) |
245 | JobQueue.Instance.createJob({ type: 'email', payload }) | 245 | JobQueue.Instance.createJobAsync({ type: 'email', payload }) |
246 | } | 246 | } |
247 | } | 247 | } |
248 | 248 | ||