Skip to content
Snippets Groups Projects

Fix condition on referer check

Merged Rene Fernandez Sanchez requested to merge handle_hostname into test
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -13,7 +13,7 @@ export default function Main() {
};
const referer = getParentHostname();
if (isRefererAllowed(referer)) {
if (!isRefererAllowed(referer)) {
setInitialized(true);
} else {
console.log("Initializing Keycloak...");
Loading