Fixing check for relevant emails

This commit is contained in:
Collin Duncan 2023-09-23 23:12:39 +02:00
parent 3d13b84ef1
commit fd5966bb8f
No known key found for this signature in database

View file

@ -53,7 +53,7 @@ export class WaitingListService {
subject: email.subject,
})
if (!this.isRelevantEmail) return
if (!this.isRelevantEmail(email)) return
await Promise.all([
this.ntfyProvider.sendWaitListEmailReceivedNotification(email.subject),