Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Patch always logging in issue #546

Merged
merged 2 commits into from
Oct 7, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions angularjs-portal-home/src/main/webapp/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ require(['./config', './js/login-config'], function(config, loginConfig) {
if (response.data.username === 'guest') {
$rootScope.GuestMode = true;
}
//for some really weird reason the $sessionStorage here isn't being
//persisted to real session storage, so we have to do it manually.
$sessionStorage.$apply();
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trailing }, opps.

}
});
} else {
Expand Down