fix extension

Changelog: changed
This commit is contained in:
Kai 2025-05-28 17:33:35 -05:00
commit c32ebe016b
No known key found for this signature in database

View file

@ -1165,7 +1165,7 @@ class VideoDownload {
else if (container.contains("audio/webm")) else if (container.contains("audio/webm"))
return "webm"; return "webm";
else if (container == "application/vnd.apple.mpegurl") else if (container == "application/vnd.apple.mpegurl")
return "mp4a"; return "mp4";
else else
return "audio";// throw IllegalStateException("Unknown container: " + container) return "audio";// throw IllegalStateException("Unknown container: " + container)
} }