diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 1b6b3094b6fdaa236635a35a1b51ac5f6f1f9af3..073ad4cebde1a1bbdcc2109936c8235278705f04 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -3,6 +3,8 @@
 Feeds 7.x 2.0 XXXXXXXXXXXXXXXXXXX
 ---------------------------------
 
+- #923318: Fix Fatal error: Call to a member function import() on a non-object
+  occuring on cron.
 - Clean up basic settings form.
 - Make getConfig() include configuration defaults.
 
diff --git a/feeds.module b/feeds.module
index 92166f42aadc4722764de8e08b63acd876d058ca..ae0973160e505710d9f0478cd26b8856d48a8b20 100644
--- a/feeds.module
+++ b/feeds.module
@@ -79,6 +79,7 @@ function feeds_source_import($job) {
   try {
     $source->existing()->import();
   }
+  catch (FeedsNotExistingException $e) {}
   catch (Exception $e) {
     watchdog('feeds_source_import()', $e->getMessage(), array(), WATCHDOG_ERROR);
   }
@@ -93,6 +94,7 @@ function feeds_importer_expire($job) {
   try {
     $importer->existing()->expire();
   }
+  catch (FeedsNotExistingException $e) {}
   catch (Exception $e) {
     watchdog('feeds_importer_expire()', $e->getMessage(), array(), WATCHDOG_ERROR);
   }
diff --git a/includes/FeedsSource.inc b/includes/FeedsSource.inc
index 90f2f8ef5f50bcfcd24b73915ad181dc52ae07f1..f044d1469ee008a0f193e363a0d83e98b226a069 100644
--- a/includes/FeedsSource.inc
+++ b/includes/FeedsSource.inc
@@ -422,6 +422,7 @@ class FeedsSource extends FeedsConfigurable {
       $this->importer->existing();
       return parent::existing();
     }
+    throw new FeedsNotExistingException(t('Source configuration not valid.'));
   }
 
   /**