diff options
| author | 2019-01-24 20:44:45 +0100 | |
|---|---|---|
| committer | 2019-01-24 20:44:45 +0100 | |
| commit | f1ac6dd5509c6aa9e1d99401c5e1a0b894d4e7b0 (patch) | |
| tree | 5d71ca953834af2e918820a2a47b25e3fc2143c0 /app/views/helpers/export | |
| parent | f0684d701862d103fce834bad9e139f97544bc62 (diff) | |
Export/import articles read/unread state (#2226)
Diffstat (limited to 'app/views/helpers/export')
| -rw-r--r-- | app/views/helpers/export/articles.phtml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/helpers/export/articles.phtml b/app/views/helpers/export/articles.phtml index eb2cb0924..2d1fcd133 100644 --- a/app/views/helpers/export/articles.phtml +++ b/app/views/helpers/export/articles.phtml @@ -56,6 +56,7 @@ foreach ($this->entriesRaw as $entryRaw) { 'feedUrl' => $feed == null ? '' : $feed->url(), ) ); + $article['categories'][] = $entry->isRead() ? 'user/-/state/com.google/read' : 'user/-/state/com.google/unread'; if ($entry->isFavorite()) { $article['categories'][] = 'user/-/state/com.google/starred'; } |
