Fix setValues function in config.js

This commit is contained in:
Theresa Gresch 2019-08-09 11:43:47 +02:00
parent 00a6de27cd
commit 2911561b23

View File

@ -20,7 +20,7 @@ class Config {
for(let key in values) {
if(values.hasOwnProperty(key)) {
this.setValue[key] = values[key];
this.setValue(key, values[key]);
}
}