Fix Instapaper import date

This commit is contained in:
Jeremy Benoist 2019-05-24 14:37:54 +02:00
parent 65b495e75b
commit 9ca670c801
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C

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);