This is an automated email from the ASF dual-hosted git repository.
solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git
The following commit(s) were added to refs/heads/master by this push:
new 00dedcdb9 no jira: NotInited page behavior is fixed
00dedcdb9 is described below
commit 00dedcdb9a97fc76cd233bcb8b5f86f58f73ed96
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Thu Apr 6 13:47:05 2023 +0700
no jira: NotInited page behavior is fixed
---
.../src/main/java/org/apache/openmeetings/web/pages/BasePage.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/BasePage.java
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/BasePage.java
index 00501de1f..b60cf46c7 100644
---
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/BasePage.java
+++
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/pages/BasePage.java
@@ -76,7 +76,7 @@ public abstract class BasePage extends
AsyncUrlFragmentAwarePage {
if (!isInstalled() && ! (this instanceof
InstallWizardPage)) {
throw new
RestartResponseException(InstallWizardPage.class);
}
- } else {
+ } else if (!(this instanceof NotInitedPage)) {
throw new RestartResponseException(NotInitedPage.class);
}
options.put("fragmentIdentifierSuffix", "");