Skip to content

Commit

Permalink
Removed media id encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
jmulford-bw authored Jan 8, 2021
1 parent 69c7227 commit c16677c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bandwidth/messaging/controllers/api_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def get_media(self,
_url_path = '/users/{userId}/media/{mediaId}'
_url_path = APIHelper.append_url_with_template_parameters(_url_path, {
'userId': {'value': user_id, 'encode': True},
'mediaId': {'value': media_id, 'encode': True}
'mediaId': {'value': media_id, 'encode': False}
})
_query_builder = self.config.get_base_uri(Server.MESSAGINGDEFAULT)
_query_builder += _url_path
Expand Down

0 comments on commit c16677c

Please sign in to comment.