Skip to content

Commit

Permalink
Don't map "null" to "null" by default on Import Sync
Browse files Browse the repository at this point in the history
fixes #1718
  • Loading branch information
joni1993 committed Oct 21, 2019
1 parent e871ba4 commit d497b5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static function addSettingsFormFields(QuickForm $form)

public function transform($value)
{
if ($value === false || $value === true || $value === null) {
if ($value === false || $value === true) {
return $value;
}

Expand Down

0 comments on commit d497b5f

Please sign in to comment.