Skip to content

Commit

Permalink
Merge pull request #7066 from DonOmalVindula/fix/null-check-order
Browse files Browse the repository at this point in the history
Implement possible fix jsp rendering error
  • Loading branch information
DonOmalVindula authored Oct 30, 2024
2 parents 0034e20 + cc737fc commit 6f1ed91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/hungry-sheep-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/identity-apps-core": patch
---

Implement possible fix jsp rendering error
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
Boolean appEnabledStatus = false;
// Temporary fix for application name not retrieving from the applicationDataRetrievalClient.
if (applicationName.equals("null") || StringUtils.isBlank(applicationName)) {
if (StringUtils.isBlank(applicationName) || applicationName.equals("null")) {
// If application name is not available, fallback to My Account application.
appEnabledStatus = applicationDataRetrieval.getApplicationEnabledStatus(tenantDomain, MY_ACCOUNT_APP_NAME);
} else {
Expand Down

0 comments on commit 6f1ed91

Please sign in to comment.