From 7d08293c161c77f24728b16440a5e5ef76f0154f Mon Sep 17 00:00:00 2001 From: Ricky Miller Date: Mon, 12 Feb 2018 09:19:12 -0600 Subject: [PATCH] Replace quotes --- js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/utils.js b/js/utils.js index 1e1e733f..c3d18fc3 100644 --- a/js/utils.js +++ b/js/utils.js @@ -78,7 +78,7 @@ export const parseIni = text => { let section, match; return text.split(/[\r\n]+/g).reduce((data, line) => { if ((match = line.match(PROPERTY_REGEX)) && section != null) { - data[section][match[1].trim().toLowerCase()] = match[2]; + data[section][match[1].trim().toLowerCase()] = match[2].replace(/("|')/, ''); } else if ((match = line.match(SECTION_REGEX))) { section = match[1].trim().toLowerCase(); data[section] = {};