Merge pull request #1106 from timendum/master

Fix for siteSettings is null
This commit is contained in:
luke crouch 2018-01-30 14:03:06 -06:00 committed by GitHub
commit a86ec308fe

View file

@ -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 {};
}