Skip to content

Commit a6ecf14

Browse files
authored
Merge pull request #8 from Bandwidth/patch/media-encoding
Removed media id encoding
2 parents 69c7227 + a79e684 commit a6ecf14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bandwidth/messaging/controllers/api_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def get_media(self,
116116
_url_path = '/users/{userId}/media/{mediaId}'
117117
_url_path = APIHelper.append_url_with_template_parameters(_url_path, {
118118
'userId': {'value': user_id, 'encode': True},
119-
'mediaId': {'value': media_id, 'encode': True}
119+
'mediaId': {'value': media_id, 'encode': False}
120120
})
121121
_query_builder = self.config.get_base_uri(Server.MESSAGINGDEFAULT)
122122
_query_builder += _url_path

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name='bandwidth-sdk',
15-
version='6.14.1',
15+
version='6.14.2',
1616
description='Bandwidth\'s set of APIs',
1717
long_description=long_description,
1818
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)