mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-26 03:47:40 -07:00
Fix #6676
This commit is contained in:
parent
db9c8e2155
commit
58e595a009
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ export async function createNotification(
|
|||
|
||||
const profile = await UserProfiles.findOne({ userId: notifieeId });
|
||||
|
||||
const isMuted = !profile?.includingNotificationTypes?.includes(type);
|
||||
const isMuted = !(profile?.includingNotificationTypes === null || profile?.includingNotificationTypes.includes(type));
|
||||
|
||||
// Create notification
|
||||
const notification = await Notifications.save({
|
||||
|
|
Loading…
Reference in a new issue