mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-03 01:25:21 +02:00
parent
ab2e566ee1
commit
434c12672f
2 changed files with 14 additions and 1 deletions
|
@ -196,7 +196,10 @@ class ParameterValidator {
|
|||
if(isset($data[$id]) && !empty($data[$id])) {
|
||||
$queriedContexts[$context] = true;
|
||||
} elseif(isset($properties['required'])
|
||||
&& $properties['required'] === true) {
|
||||
&& $properties['required'] === true
|
||||
&& isset($properties['type'])
|
||||
&& $properties['type'] !== 'checkbox'
|
||||
&& $properties['type'] !== 'list') {
|
||||
$queriedContexts[$context] = false;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue