mirror of
https://github.com/wallabag/wallabag.git
synced 2025-04-25 19:34:07 +00:00
Merge pull request #3980 from wallabag/fix/instapaper-date-import
Fix Instapaper import date order
This commit is contained in:
commit
cc9731bf2b
1 changed files with 4 additions and 0 deletions
|
@ -93,6 +93,10 @@ class InstapaperImport extends AbstractImport
|
||||||
return false;
|
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) {
|
if ($this->producer) {
|
||||||
$this->parseEntriesForProducer($entries);
|
$this->parseEntriesForProducer($entries);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue