fix(miniflux): support /feed/{id}/entries/all with params

This commit is contained in:
2025-07-08 21:50:44 +00:00
parent 3f4a574e3a
commit 7cd44d899c

View File

@@ -2,7 +2,7 @@
'use strict'; 'use strict';
// Check if the URL matches the specific pattern // 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 return; // Exit if the URL does not match
} }