Merge pull request #29 from edsu/media-post-value-error
media_post ValueError
This commit is contained in:
commit
795354a835
S'han modificat 1 arxius amb 1 adicions i 1 eliminacions
|
@ -565,7 +565,7 @@ class Mastodon:
|
|||
Returns a media dict. This contains the id that can be used in
|
||||
status_post to attach the media file to a toot.
|
||||
"""
|
||||
if os.path.isfile(media_file) and mime_type == None:
|
||||
if mime_type == None and os.path.isfile(media_file):
|
||||
mime_type = mimetypes.guess_type(media_file)[0]
|
||||
media_file = open(media_file, 'rb')
|
||||
|
||||
|
|
Loading…
Referencia en una nova incidència