Fix for siteSettings is null
siteSettings can be null, with this change we can avoid an exception.
This commit is contained in:
parent
aed27aa976
commit
4cbfa3a176
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ const assignManager = {
|
|||
|
||||
// The container we have in the assignment map isn't present any more so lets remove it
|
||||
// then continue the existing load
|
||||
if (!container) {
|
||||
if (siteSettings && !container) {
|
||||
this.deleteContainer(siteSettings.userContextId);
|
||||
return {};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue