mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-30 15:25:16 +01:00
Merge pull request #3980 from wallabag/fix/instapaper-date-import
Fix Instapaper import date order
This commit is contained in:
commit
cc9731bf2b
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user