Skip to content

Commit 5d7c274

Browse files
committed
Call default getters in plugin context
1 parent f5f6fff commit 5d7c274

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
@@ -44,7 +44,7 @@ var DeployPluginBase = CoreObject.extend({
4444
readConfig: function(property){
4545
var configuredValue = this.pluginConfig[property];
4646
if (typeof configuredValue === 'function') {
47-
return configuredValue(this.context);
47+
return configuredValue.call(this, this.context);
4848
}
4949
return configuredValue;
5050
},

0 commit comments

Comments
 (0)