Browse Source

Fix import bug

Alexandre Alapetite 9 years ago
parent
commit
50f1e027e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Controllers/importExportController.php

+ 1 - 1
app/Controllers/importExportController.php

@@ -365,7 +365,7 @@ class FreshRSS_importExport_Controller extends Minz_ActionController {
 			$newGuids[] = $item['id'];
 		}
 		// For this feed, check existing GUIDs already in database.
-		$existingHashForGuids = $entryDAO->listHashForFeedGuids($feed->id(), $newGuids);
+		$existingHashForGuids = $this->entryDAO->listHashForFeedGuids($feed->id(), $newGuids);
 		unset($newGuids);
 
 		// Then, articles are imported.