We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab76e47 commit d405a2dCopy full SHA for d405a2d
1 file changed
protocol/task_agent.go
@@ -75,7 +75,7 @@ func (c *PropertiesCollection) Lookup(name, ty string) (interface{}, bool) {
75
return nil, false
76
}
77
78
-func (c *PropertiesCollection) LookupBool(name string) (value bool, ok bool) {
+func (c *PropertiesCollection) LookupBool(name string) (value, ok bool) {
79
if v, ok := c.Lookup(name, "System.Boolean"); ok && v != nil {
80
b, isBool := v.(bool)
81
return b, isBool
0 commit comments