Skip to content

Commit

Permalink
refactor(auth_hybrid_matrix_token): sync with jitsi/jitsi-meet@efd2db7
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Oct 17, 2024
1 parent 344b8c7 commit 11ea9d2
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions auth_hybrid_matrix_token/mod_auth_hybrid_matrix_token.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,11 @@ local function matrix_handler(session, payload)
if res == false then
module:log(
"warn",
"Error verifying token err:%s, reason:%s", error, reason
"Error verifying token err:%s, reason:%s tenant:%s room:%s",
error,
reason,
session.jitsi_web_query_prefix,
session.jitsi_web_query_room
)
session.auth_token = nil
measure_verify_fail(1)
Expand Down Expand Up @@ -278,7 +282,11 @@ local function token_handler(session)
if res == false then
module:log(
"warn",
"Error verifying token err:%s, reason:%s", error, reason
"Error verifying token err:%s, reason:%s tenant:%s room:%s",
error,
reason,
session.jitsi_web_query_prefix,
session.jitsi_web_query_room
)
session.auth_token = nil
measure_verify_fail(1)
Expand Down

0 comments on commit 11ea9d2

Please sign in to comment.