summaryrefslogtreecommitdiff
path: root/app/Services/ExportService.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Services/ExportService.php')
-rw-r--r--app/Services/ExportService.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Services/ExportService.php b/app/Services/ExportService.php
index 0d45ba548..d3a3373a5 100644
--- a/app/Services/ExportService.php
+++ b/app/Services/ExportService.php
@@ -94,7 +94,7 @@ class FreshRSS_Export_Service {
*/
public function generateFeedEntries(int $feed_id, int $max_number_entries): ?array {
$feed = $this->feed_dao->searchById($feed_id);
- if (!$feed) {
+ if ($feed === null) {
return null;
}
@@ -127,7 +127,7 @@ class FreshRSS_Export_Service {
* @return array<string,string> Keys are filenames and values are contents.
*/
public function generateAllFeedEntries(int $max_number_entries): array {
- $feed_ids = $this->feed_dao->listFeedsIds() ?: [];
+ $feed_ids = $this->feed_dao->listFeedsIds();
$exported_files = [];
foreach ($feed_ids as $feed_id) {