Skip to content
Snippets Groups Projects
Commit bdd68367 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: don’t massage encrypted object

parent d30f0e57
Loading
......@@ -34,7 +34,7 @@ function massageConfig(config) {
massagedConfig[key].push(item);
}
});
} else if (is.object(val)) {
} else if (is.object(val) && key !== 'encrypted') {
massagedConfig[key] = massageConfig(val);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment