We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbdb9bb commit baafe6fCopy full SHA for baafe6f
opentok/opentok.py
@@ -2094,8 +2094,11 @@ def start_captions(
2094
timeout=self.timeout,
2095
)
2096
2097
+ # Keeping backwards compat just in case
2098
if response and response.status_code == 200:
2099
return Captions(response.json())
2100
+ if response and response.status_code == 202:
2101
+ return Captions(response.json())
2102
elif response.status_code == 400:
2103
"""
2104
The HTTP response has a 400 status code in the following cases:
0 commit comments