Index: feedapi.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedapi/feedapi.module,v
retrieving revision 1.23.2.119.2.57
diff -u -p -r1.23.2.119.2.57 feedapi.module
--- feedapi.module	5 Jun 2009 13:32:47 -0000	1.23.2.119.2.57
+++ feedapi.module	16 Jun 2009 12:19:12 -0000
@@ -1059,7 +1059,7 @@ function _feedapi_process_text($text, $a
  * Stores settings per content type or per node.
  *
  * @param $args
- *  Associative array which is $args['nid'] = N or $args['node_type'] = "content_type". Depends on what to store for
+ *  Associative array which is $args['vid'] = N or $args['node_type'] = "content_type". Depends on what to store for
  * @param $settings
  *  The settings data itself
  */
@@ -1070,7 +1070,7 @@ function _feedapi_store_settings($args, 
     // This ensures that next time, not the cached, but the updated value will be used.
     feedapi_get_settings(NULL, $args['vid'], TRUE);
   }
-  elseif ($args['node_type']) {
+  elseif (isset($args['node_type'])) {
     variable_set('feedapi_settings_'. $args['node_type'], $settings);
   }
 }
