Reduce undeeded use of elvis operator ?: (#7204)

This commit is contained in:
Alexandre Alapetite authored and GitHub committed 2025-01-10 08:13:09 +01:00
1 parent 3280ec617f
commit 5368f38753
23 files changed
+71 -74

No files matched your search

+2 -2
View File
@@ -36,9 +36,9 @@ class FreshRSS_javascript_Controller extends FreshRSS_ActionController {
public function nbUnreadsPerFeedAction(): void {
header('Content-Type: application/json; charset=UTF-8');
$catDAO = FreshRSS_Factory::createCategoryDao();
$this->view->categories = $catDAO->listCategories(true, false) ?: [];
$this->view->categories = $catDAO->listCategories(prePopulateFeeds: true, details: false);
$tagDAO = FreshRSS_Factory::createTagDao();
$this->view->tags = $tagDAO->listTags(true) ?: [];
$this->view->tags = $tagDAO->listTags(precounts: true);
}
//For Web-form login