diff --git a/private/configuration/ConfigurationManager.js b/private/configuration/ConfigurationManager.js index ae57095..c12dd40 100644 --- a/private/configuration/ConfigurationManager.js +++ b/private/configuration/ConfigurationManager.js @@ -59,7 +59,7 @@ class ConfigurationManager { getValueOf(key) { if(this.isHeroku) { - key = key.replace(/\./, '_').toUpperCase(); + key = key.replace(/\./g, '_').toUpperCase(); if(typeof this.data[key] === typeof undefined) return null; return this.data[key]; }