Commit 6759101441847c1ef4752c5bc44d409243da34dd

Authored by Adhidarma Hadiwinoto
1 parent acb890ef0a
Exists in master

perbaikan kesalahan del, seharusnya delete

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -22,7 +22,7 @@ function _removeIfNotExists(new_config) {
22 22 for (let key in config) {
23 23 if (!new_config[key]) {
24 24 logger.verbose('Removing old config key: ' + key);
25   - del config[key];
  25 + delete config[key];
26 26 }
27 27 }
28 28 }