From 3bfef849e579a1c0be010c7da288fd1ae3816f99 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 10 Jul 2018 05:43:42 +1000 Subject: [PATCH] More heroku standardization --- private/configuration/ConfigurationManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; }