More heroku standardization
This commit is contained in:
@ -59,7 +59,7 @@ class ConfigurationManager {
|
|||||||
|
|
||||||
getValueOf(key) {
|
getValueOf(key) {
|
||||||
if(this.isHeroku) {
|
if(this.isHeroku) {
|
||||||
key = key.replace(/\./, '_').toUpperCase();
|
key = key.replace(/\./g, '_').toUpperCase();
|
||||||
if(typeof this.data[key] === typeof undefined) return null;
|
if(typeof this.data[key] === typeof undefined) return null;
|
||||||
return this.data[key];
|
return this.data[key];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user