More heroku standardization

This commit is contained in:
2018-07-10 05:43:42 +10:00
parent 776b29b679
commit 3bfef849e5

View File

@ -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];
}