Skip to content

Commit

Permalink
Merge pull request #955 from fgallaire/master
Browse files Browse the repository at this point in the history
Fix 'NoneType' object assignment error from #892 and #954
  • Loading branch information
Badiboy authored Aug 22, 2020
2 parents 818905d + 5e19965 commit c1c84a5
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions telebot/apihelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,10 @@ def send_video(token, chat_id, data, duration=None, caption=None, reply_to_messa
payload['connect-timeout'] = timeout
if thumb:
if not util.is_string(thumb):
files['thumb'] = thumb
if files:
files['thumb'] = thumb
else:
files = {'thumb': thumb}
else:
payload['thumb'] = thumb
if width:
Expand Down Expand Up @@ -533,7 +536,10 @@ def send_animation(token, chat_id, data, duration=None, caption=None, reply_to_m
payload['connect-timeout'] = timeout
if thumb:
if not util.is_string(thumb):
files['thumb'] = thumb
if files:
files['thumb'] = thumb
else:
files = {'thumb': thumb}
else:
payload['thumb'] = thumb
return _make_request(token, method_url, params=payload, files=files, method='post')
Expand Down Expand Up @@ -590,7 +596,10 @@ def send_video_note(token, chat_id, data, duration=None, length=None, reply_to_m
payload['connect-timeout'] = timeout
if thumb:
if not util.is_string(thumb):
files['thumb'] = thumb
if files:
files['thumb'] = thumb
else:
files = {'thumb': thumb}
else:
payload['thumb'] = thumb
return _make_request(token, method_url, params=payload, files=files, method='post')
Expand Down Expand Up @@ -625,7 +634,10 @@ def send_audio(token, chat_id, audio, caption=None, duration=None, performer=Non
payload['connect-timeout'] = timeout
if thumb:
if not util.is_string(thumb):
files['thumb'] = thumb
if files:
files['thumb'] = thumb
else:
files = {'thumb': thumb}
else:
payload['thumb'] = thumb
return _make_request(token, method_url, params=payload, files=files, method='post')
Expand Down Expand Up @@ -654,7 +666,10 @@ def send_data(token, chat_id, data, data_type, reply_to_message_id=None, reply_m
payload['caption'] = caption
if thumb:
if not util.is_string(thumb):
files['thumb'] = thumb
if files:
files['thumb'] = thumb
else:
files = {'thumb': thumb}
else:
payload['thumb'] = thumb
return _make_request(token, method_url, params=payload, files=files, method='post')
Expand Down

0 comments on commit c1c84a5

Please sign in to comment.