Don't convert objects during backwards compat
parent
8921cd711f
commit
289893d1f4
|
@ -144,6 +144,7 @@ export default data => {
|
||||||
// Handle converting old domain settings to new ones
|
// Handle converting old domain settings to new ones
|
||||||
for (const key in values[i]) {
|
for (const key in values[i]) {
|
||||||
if (!Object.prototype.hasOwnProperty.call(values[i], key)) continue;
|
if (!Object.prototype.hasOwnProperty.call(values[i], key)) continue;
|
||||||
|
if (isObject(values[i][key])) continue;
|
||||||
|
|
||||||
// Map old settings to their new ones
|
// Map old settings to their new ones
|
||||||
if (key in domainMap) {
|
if (key in domainMap) {
|
||||||
|
|
Loading…
Reference in New Issue