mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
fix: operator precedence bug
This commit is contained in:
parent
1c45eff505
commit
4c482563c4
@ -240,7 +240,7 @@ abstract class BridgeAbstract
|
||||
if (isset($input[$name])) {
|
||||
$value = $input[$name];
|
||||
} else {
|
||||
if ($properties['type'] ?? null === 'checkbox') {
|
||||
if (($properties['type'] ?? null) === 'checkbox') {
|
||||
$value = false;
|
||||
} elseif (isset($properties['defaultValue'])) {
|
||||
$value = $properties['defaultValue'];
|
||||
|
Loading…
Reference in New Issue
Block a user