File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
openid-connect-common/src/main/java/org/mitre/openid/connect/config Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,11 @@ public void setLanguageNamespaces(List<String> languageNamespaces) {
201201 * @return true if dual client is configured, otherwise false
202202 */
203203 public boolean isDualClient () {
204- return dualClient ;
204+ if (isHeartMode ()) {
205+ return false ; // HEART mode is incompatible with dual client mode
206+ } else {
207+ return dualClient ;
208+ }
205209 }
206210
207211 /**
@@ -212,7 +216,7 @@ public void setDualClient(boolean dualClient) {
212216 }
213217
214218 /**
215- * Get the list of namespaces as a JSON string
219+ * Get the list of namespaces as a JSON string, for injection into the JavaScript UI
216220 * @return
217221 */
218222 public String getLanguageNamespacesString () {
You can’t perform that action at this time.
0 commit comments