diff --git a/crates/router/src/core/utils.rs b/crates/router/src/core/utils.rs index 2fcf8a2477..eb7a3af575 100644 --- a/crates/router/src/core/utils.rs +++ b/crates/router/src/core/utils.rs @@ -1240,7 +1240,7 @@ pub fn get_html_redirect_response_for_external_authentication( try {{ // if inside iframe, send post message to parent for redirection if (window.self !== window.parent) {{ - window.top.postMessage({{poll_status: poll_status_data}}, '*') + window.parent.postMessage({{poll_status: poll_status_data}}, '*') // if parent, redirect self to return_url }} else {{ window.location.href = return_url @@ -1248,7 +1248,7 @@ pub fn get_html_redirect_response_for_external_authentication( }} catch(err) {{ // if error occurs, send post message to parent and wait for 10 secs to redirect. if doesn't redirect, redirect self to return_url - window.top.postMessage({{poll_status: poll_status_data}}, '*') + window.parent.postMessage({{poll_status: poll_status_data}}, '*') setTimeout(function() {{ window.location.href = return_url }}, 10000); @@ -1270,7 +1270,7 @@ pub fn get_html_redirect_response_for_external_authentication( try {{ // if inside iframe, send post message to parent for redirection if (window.self !== window.parent) {{ - window.top.postMessage({{openurl_if_required: return_url}}, '*') + window.parent.postMessage({{openurl_if_required: return_url}}, '*') // if parent, redirect self to return_url }} else {{ window.location.href = return_url @@ -1278,7 +1278,7 @@ pub fn get_html_redirect_response_for_external_authentication( }} catch(err) {{ // if error occurs, send post message to parent and wait for 10 secs to redirect. if doesn't redirect, redirect self to return_url - window.top.postMessage({{openurl_if_required: return_url}}, '*') + window.parent.postMessage({{openurl_if_required: return_url}}, '*') setTimeout(function() {{ window.location.href = return_url }}, 10000);