From 7cd44d899ca3312734afc7240ef63d1ce7669885 Mon Sep 17 00:00:00 2001 From: SansGuidon Date: Tue, 8 Jul 2025 21:50:44 +0000 Subject: [PATCH] fix(miniflux): support /feed/{id}/entries/all with params --- miniflux_scripts/feed_classifier.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniflux_scripts/feed_classifier.js b/miniflux_scripts/feed_classifier.js index 68d40ff..8264398 100644 --- a/miniflux_scripts/feed_classifier.js +++ b/miniflux_scripts/feed_classifier.js @@ -2,7 +2,7 @@ 'use strict'; // Check if the URL matches the specific pattern - if (!window.location.href.match(/\/feed\/\d+\/entries\/all$/)) { + if (!window.location.href.match(/\/feed\/\d+\/entries\/all/)) { return; // Exit if the URL does not match }