Skip to content

Commit 10c5b2f

Browse files
committed
Don't treat plugin values configured as false as missing
1 parent d7b6c23 commit 10c5b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var DeployPluginBase = CoreObject.extend({
2424
this.log('config ok');
2525
},
2626
applyDefaultConfigProperty: function(propertyName){
27-
if (!this.pluginConfig[propertyName]) {
27+
if (this.pluginConfig[propertyName] === undefined) {
2828
var value = this.defaultConfig[propertyName];
2929
this.pluginConfig[propertyName] = value;
3030
var description = value;

0 commit comments

Comments
 (0)