Don't convert objects during backwards compat

pull/111/head
MattIPv4 2020-06-02 17:40:05 +01:00
parent 8921cd711f
commit 289893d1f4
1 changed files with 1 additions and 0 deletions

View File

@ -144,6 +144,7 @@ export default data => {
// Handle converting old domain settings to new ones
for (const key in values[i]) {
if (!Object.prototype.hasOwnProperty.call(values[i], key)) continue;
if (isObject(values[i][key])) continue;
// Map old settings to their new ones
if (key in domainMap) {