Skip to content

Commit

Permalink
Fix problem with msg_id not being buytes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalstra-keeper committed Aug 5, 2024
1 parent 1378966 commit 6332673
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keepercommander/commands/pam/router_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def router_send_action_to_gateway(params, gateway_action: GatewayAction, message
msg_id = gateway_action.conversationId if gateway_action.conversationId else GatewayAction.generate_conversation_id('true')

rq = router_pb2.RouterControllerMessage()
rq.messageUid = msg_id
rq.messageUid = utils.base64_url_decode(msg_id)
rq.controllerUid = destination_gateway_uid_bytes
rq.messageType = message_type
rq.streamResponse = is_streaming
Expand Down

0 comments on commit 6332673

Please sign in to comment.