SmartThings Zones Open/Closed

I just got the SmartThings integration set up and if I try to "arm" my house in the SmartThings dashboard it complains that the zones are open. Looking at the service_manager.groovy code on line 281-282 I see:
Shouldn't it be:
- Code: Select all
// Default contact to closed.
zone_switch.sendEvent(name: "contact", value: "open", isStateChange: true, displayed: false);
Shouldn't it be:
- Code: Select all
// Default contact to closed.
zone_switch.sendEvent(name: "contact", value: "closed", isStateChange: true, displayed: false);