aboutsummaryrefslogtreecommitdiff
path: root/p/api
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-10-26 15:07:38 +0100
committerGravatar GitHub <noreply@github.com> 2025-10-26 15:07:38 +0100
commit1217b6de34cc5f23cc73d8d37a51c4616a3780ab (patch)
tree193f43d5c654a2dbd5a9da1703956ee97a15fb17 /p/api
parente18ac172db58b66b50c21dc03fcb157768f8fd8a (diff)
OPML export/import frss:priority (#8158)
Follow-up of https://github.com/FreshRSS/FreshRSS/pull/7583
Diffstat (limited to 'p/api')
-rw-r--r--p/api/greader.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/p/api/greader.php b/p/api/greader.php
index fb2ea03f5..1986b8c3d 100644
--- a/p/api/greader.php
+++ b/p/api/greader.php
@@ -365,12 +365,12 @@ final class GReaderAPI {
'/api/greader.php/reader/api/0/subscription', '', // Security if base_url is not set properly
$feed->favicon(absolute: true)),
'frss:priority' => match ($feed->priority()) {
- FreshRSS_Feed::PRIORITY_IMPORTANT => 'important',
- FreshRSS_Feed::PRIORITY_MAIN_STREAM => 'main',
- FreshRSS_Feed::PRIORITY_CATEGORY => 'category',
- FreshRSS_Feed::PRIORITY_FEED => 'feed',
- // FreshRSS_Feed::PRIORITY_HIDDEN => 'hidden', // Not returned by the API
- default => 'main',
+ FreshRSS_Feed::PRIORITY_IMPORTANT => FreshRSS_Export_Service::PRIORITY_IMPORTANT,
+ FreshRSS_Feed::PRIORITY_MAIN_STREAM => FreshRSS_Export_Service::PRIORITY_MAIN_STREAM,
+ FreshRSS_Feed::PRIORITY_CATEGORY => FreshRSS_Export_Service::PRIORITY_CATEGORY,
+ FreshRSS_Feed::PRIORITY_FEED => FreshRSS_Export_Service::PRIORITY_FEED,
+ // FreshRSS_Feed::PRIORITY_HIDDEN => FreshRSS_Export_Service::PRIORITY_HIDDEN, // Not returned by the API
+ default => FreshRSS_Export_Service::PRIORITY_MAIN_STREAM,
},
];
}