We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97e12c9 commit 8879cfeCopy full SHA for 8879cfe
src/org/opensolaris/opengrok/authorization/AuthorizationFramework.java
@@ -688,8 +688,9 @@ private void increasePluginVersion() {
688
private boolean isSessionInvalid(HttpSession session) {
689
long version;
690
691
- if (session.getAttribute(SESSION_VERSION) == null)
+ if (session.getAttribute(SESSION_VERSION) == null) {
692
return true;
693
+ }
694
695
version = (long) session.getAttribute(SESSION_VERSION);
696
return version != getPluginVersion();
0 commit comments