Index: sites/all/modules/contrib/og_notifications/og_notifications.module
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- sites/all/modules/contrib/og_notifications/og_notifications.module	(revision 8bf7cf5619ae7e8434dba75e1878b6651735d6c1)
+++ sites/all/modules/contrib/og_notifications/og_notifications.module	(revision )
@@ -1,7 +1,7 @@
 <?php
 

 /**
  * Implements hook_notifications_object_node().
  */
 function og_notifications_notifications_object_node($op, $node, $account = NULL) {
   switch ($op) {
     case 'subscription types':
       return array('group_content', 'group_content_type');
     case 'subscriptions':
+      if (!og_is_group_type('node', $node->type)) return;
+      if (!og_is_group_content_type('node', $node->type)) return;
       // Return available subscription options for this node
       $options = array();
       if (array_keys(og_get_all_group_content_entity())) {
@@ -170,7 +172,7 @@
 }
 
