Skip to content

Commit

Permalink
set 'video/quicktime' to 'video/mp4' (#4495)
Browse files Browse the repository at this point in the history
`video/quicktime` only plays in Firefox and Safari.
`video/mp4` plays in Firefox, Safari, and Chromium-based browsers.
  • Loading branch information
xnaas committed Apr 12, 2022
1 parent 20ed3e6 commit 57b1e51
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/plugins/uploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ class Uploader {
detectedMimeType = "audio/flac";
} else if (detectedMimeType === "audio/x-m4a") {
detectedMimeType = "audio/mp4";
} else if (detectedMimeType === "video/quicktime") {
detectedMimeType = "video/mp4";
}

res.setHeader("Content-Disposition", disposition);
Expand Down

0 comments on commit 57b1e51

Please sign in to comment.