mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[utils] Allow None mimetypes in mimetype2ext
This commit is contained in:
parent
a1394b820d
commit
eb9ee19422
@ -1935,6 +1935,9 @@ def error_to_compat_str(err):
|
|||||||
|
|
||||||
|
|
||||||
def mimetype2ext(mt):
|
def mimetype2ext(mt):
|
||||||
|
if mt is None:
|
||||||
|
return None
|
||||||
|
|
||||||
ext = {
|
ext = {
|
||||||
'audio/mp4': 'm4a',
|
'audio/mp4': 'm4a',
|
||||||
}.get(mt)
|
}.get(mt)
|
||||||
|
Loading…
Reference in New Issue
Block a user