Fix value usage in the boolean mapper

This commit is contained in:
Chris Roberts 2022-01-11 10:23:40 -08:00 committed by Paul Hinze
parent 43e5550203
commit 2a7e43d269
No known key found for this signature in database
GPG Key ID: B69DEDF2D55501C0

View File

@ -16,7 +16,7 @@ module VagrantPlugins
end
def converter(bool)
Google::Protobuf::BoolValue.new(value: bool)
Google::Protobuf::BoolValue.new(value: bool.value)
end
end