Do not crash if catchAll is not yet defined for a maildomain
This commit is contained in:
@@ -59,8 +59,8 @@ onMounted(async () => {
|
||||
}));
|
||||
}
|
||||
|
||||
addresses.value = props.domainConfig.catchAll.slice();
|
||||
currentAddresses.value = props.domainConfig.catchAll.slice();
|
||||
addresses.value = props.domainConfig.catchAll ? props.domainConfig.catchAll.slice() : [];
|
||||
currentAddresses.value = props.domainConfig.catchAll ? props.domainConfig.catchAll.slice() : [];
|
||||
|
||||
busy.value = false;
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user