Skip to content

Commit

Permalink
Fix issues with recording_ready callback failing (#5317)
Browse files Browse the repository at this point in the history
  • Loading branch information
farhatahmad authored Jul 7, 2023
1 parent eb07901 commit debf782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/big_blue_button_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def update_recordings(record_id:, meta_hash:)

# Decodes the JWT using the BBB secret as key (Used in Recording Ready Callback)
def decode_jwt(token)
JWT.decode token, Rails.configuration.bigbluebutton_secret, true, { algorithm: 'HS256' }
JWT.decode token, @secret, true, { algorithm: 'HS256' }
end

private
Expand Down

0 comments on commit debf782

Please sign in to comment.