diff options
Diffstat (limited to 'app/Controllers/feedController.php')
-rw-r--r-- | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index d393a142e..63c358da7 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -776,7 +776,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { */ private static function applyLabelActions(int $nbNewEntries) { $tagDAO = FreshRSS_Factory::createTagDao(); - $labels = $tagDAO->listTags() ?: []; + $labels = FreshRSS_Context::labels(); $labels = array_filter($labels, static function (FreshRSS_Tag $label) { return !empty($label->filtersAction('label')); }); |