Skip to content

Commit

Permalink
fix: boolean hash for adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Nov 25, 2024
1 parent a7c6081 commit 63b162f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ async function generateJwt(
// Generate hashes for Jitsi session.
// -----------------------------------------------------------------------------
function generateHash(jsonState: string): string {
let hash = "adapter=jitsi-keycloak-adapter-v2";
let hash = "adapter=true";

try {
const state = JSON.parse(jsonState) as StateType;
Expand Down

0 comments on commit 63b162f

Please sign in to comment.