mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-03 07:07:39 +02:00
[ParameterValidator] Ignore cache-busting param (#1723)
This commit is contained in:
@@ -135,6 +135,9 @@ class ParameterValidator {
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
foreach($data as $name => $value) {
|
foreach($data as $name => $value) {
|
||||||
|
// Some RSS readers add a cache-busting parameter (_=<timestamp>) to feed URLs, detect and ignore them.
|
||||||
|
if ($name === '_') continue;
|
||||||
|
|
||||||
$registered = false;
|
$registered = false;
|
||||||
foreach($parameters as $context => $set) {
|
foreach($parameters as $context => $set) {
|
||||||
if(array_key_exists($name, $set)) {
|
if(array_key_exists($name, $set)) {
|
||||||
|
Reference in New Issue
Block a user