Add support for .mov in the composer

This commit is contained in:
Thomas Ricouard 2023-01-26 18:50:05 +01:00
parent 17a0e08c64
commit f96ec217ae

View file

@ -17,14 +17,15 @@ enum StatusEditorUTTypeSupported: String, CaseIterable {
case movie = "public.movie" case movie = "public.movie"
case mp4 = "public.mpeg-4" case mp4 = "public.mpeg-4"
case gif = "public.gif" case gif = "public.gif"
case quickTimeMovie = "com.apple.quicktime-movie"
static func types() -> [UTType] { static func types() -> [UTType] {
[.url, .text, .plainText, .image, .jpeg, .png, .video, .mpeg4Movie, .gif, .movie] [.url, .text, .plainText, .image, .jpeg, .png, .video, .mpeg4Movie, .gif, .movie, .quickTimeMovie]
} }
var isVideo: Bool { var isVideo: Bool {
switch self { switch self {
case .video, .movie, .mp4, .gif: case .video, .movie, .mp4, .gif, .quickTimeMovie:
return true return true
default: default:
return false return false