Skip to content

Commit

Permalink
Merge pull request #8 from Bandwidth/patch/media-encoding
Browse files Browse the repository at this point in the history
Removed media id encoding
  • Loading branch information
jmulford-bw authored Jan 8, 2021
2 parents 69c7227 + a79e684 commit a6ecf14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='bandwidth-sdk',
version='6.14.1',
version='6.14.2',
description='Bandwidth\'s set of APIs',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit a6ecf14

Please sign in to comment.