mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-30 10:38:25 +00:00
Fix Instapaper import date
This commit is contained in:
parent
65b495e75b
commit
9ca670c801
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