aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/CallbackPage.tsx
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-07-03 22:25:49 +0100
committerGravatar Joe Banks <[email protected]>2024-07-03 22:25:49 +0100
commit7f8b0b00ceb9bba04f32d493c03302c9dbca3e5e (patch)
tree8c04a554b9033ded9965df64494bdb06221ed5ec /src/pages/CallbackPage.tsx
parentStringify received data in OAuth2 Logging (diff)
Explicitly tag PyDis messages for integrity
Diffstat (limited to 'src/pages/CallbackPage.tsx')
-rw-r--r--src/pages/CallbackPage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/CallbackPage.tsx b/src/pages/CallbackPage.tsx
index 00feb76..bd7870c 100644
--- a/src/pages/CallbackPage.tsx
+++ b/src/pages/CallbackPage.tsx
@@ -11,7 +11,7 @@ export default function CallbackPage(): JSX.Element {
if (!hasSent) {
setHasSent(true);
- window.opener.postMessage({code: code, state: state});
+ window.opener.postMessage({code: code, state: state, pydis_source: "oauth2_callback"});
}
return <div/>;