Merge pull request #1106 from timendum/master
Fix for siteSettings is null
This commit is contained in:
commit
22ec01d565
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
|
// The container we have in the assignment map isn't present any more so lets remove it
|
||||||
// then continue the existing load
|
// then continue the existing load
|
||||||
if (!container) {
|
if (siteSettings && !container) {
|
||||||
this.deleteContainer(siteSettings.userContextId);
|
this.deleteContainer(siteSettings.userContextId);
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue