Fix Instapaper import date

This commit is contained in:
Jeremy Benoist
2019-05-24 14:37:54 +02:00
parent 65b495e75b
commit 9ca670c801

View File

@ -93,6 +93,10 @@ class InstapaperImport extends AbstractImport
return false;
}
// most recent articles are first, which means we should create them at the end so they will show up first
// as Instapaper doesn't export the creation date of the article
$entries = array_reverse($entries);
if ($this->producer) {
$this->parseEntriesForProducer($entries);