2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 21:07:59 +00:00

Set supports_streaming to True by default

This commit is contained in:
Dan 2018-03-24 15:10:27 +01:00
parent 813b7958e3
commit bbe3a8a487
2 changed files with 4 additions and 4 deletions

View File

@ -1414,7 +1414,7 @@ class Client:
width: int = 0,
height: int = 0,
thumb: str = None,
supports_streaming: bool = None,
supports_streaming: bool = True,
disable_notification: bool = None,
reply_to_message_id: int = None,
progress: callable = None):
@ -1495,7 +1495,7 @@ class Client:
thumb=file_thumb,
attributes=[
types.DocumentAttributeVideo(
supports_streaming=supports_streaming,
supports_streaming=supports_streaming or None,
duration=duration,
w=width,
h=height
@ -1748,7 +1748,7 @@ class Client:
mime_type=mimetypes.types_map[".mp4"],
attributes=[
types.DocumentAttributeVideo(
supports_streaming=i.supports_streaming,
supports_streaming=i.supports_streaming or None,
duration=i.duration,
w=i.width,
h=i.height

View File

@ -81,7 +81,7 @@ class InputMedia:
width: int = 0,
height: int = 0,
duration: int = 0,
supports_streaming: bool = None):
supports_streaming: bool = True):
self.media = media
self.caption = caption
self.parse_mode = parse_mode