diff --git a/notifications.js b/notifications.js index 3f07c08..3628dbf 100644 --- a/notifications.js +++ b/notifications.js @@ -384,6 +384,7 @@ const Notifications = { }, async yourGroupGotANewPost(groupProfile, senderProfile, message, post) { const DB = await DBGetter.getDB; + if(!groupProfile.subscribed) return 0; let subscribedPromise = Object.keys(groupProfile.subscribed).map((profileid) => { return DB.getProfileCache(profileid); });