summaryrefslogtreecommitdiffstats
path: root/lib/Controller/ExportController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/ExportController.php')
-rw-r--r--lib/Controller/ExportController.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/Controller/ExportController.php b/lib/Controller/ExportController.php
index ad1975639..959881888 100644
--- a/lib/Controller/ExportController.php
+++ b/lib/Controller/ExportController.php
@@ -22,6 +22,11 @@ use \OCP\IRequest;
use \OCP\AppFramework\Http\JSONResponse;
use OCP\IUserSession;
+/**
+ * Class ExportController
+ *
+ * @package OCA\News\Controller
+ */
class ExportController extends Controller
{
@@ -69,7 +74,10 @@ class ExportController extends Controller
public function articles(): JSONResponse
{
$feeds = $this->feedService->findAllForUser($this->getUserId());
- $items = $this->itemService->findAllForUser($this->getUserId(), ['unread' => true, 'starred' => true]);
+ $starred = $this->itemService->findAllForUser($this->getUserId(), ['unread' => false, 'starred' => true]);
+ $unread = $this->itemService->findAllForUser($this->getUserId(), ['unread' => true]);
+
+ $items = array_merge($starred, $unread);
// build assoc array for fast access
$feedsDict = [];