From 2a7e43d26913fdefe931cd922bce3a77b32bd8b8 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 11 Jan 2022 10:23:40 -0800 Subject: [PATCH] Fix value usage in the boolean mapper --- plugins/commands/serve/mappers/wrappers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/serve/mappers/wrappers.rb b/plugins/commands/serve/mappers/wrappers.rb index 19445bb6b..544b87051 100644 --- a/plugins/commands/serve/mappers/wrappers.rb +++ b/plugins/commands/serve/mappers/wrappers.rb @@ -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