Merge pull request #19 from kamalmostafa/fix-SendStreamCaption

SendStreamCaption requires payload "captionText"
This commit is contained in:
Onyx and Iris 2022-12-04 18:06:42 +00:00 committed by GitHub
commit c6cbe1c894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1729,7 +1729,10 @@ class ReqClient:
""" """
self.send("SendStreamCaption") payload = {
"captionText": caption,
}
self.send("SendStreamCaption", payload)
def get_record_status(self): def get_record_status(self):
""" """