about summary refs log tree commit diff
path: root/modules/Share-with-Bluesky/ShareViewController.swift
diff options
context:
space:
mode:
Diffstat (limited to 'modules/Share-with-Bluesky/ShareViewController.swift')
-rw-r--r--modules/Share-with-Bluesky/ShareViewController.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Share-with-Bluesky/ShareViewController.swift b/modules/Share-with-Bluesky/ShareViewController.swift
index 63143277a..e166c22d2 100644
--- a/modules/Share-with-Bluesky/ShareViewController.swift
+++ b/modules/Share-with-Bluesky/ShareViewController.swift
@@ -101,7 +101,7 @@ class ShareViewController: UIViewController {
   private func handleVideos(items: [NSItemProvider]) async {
     let firstItem = items.first
 
-    if let dataUri = try? await firstItem?.loadItem(forTypeIdentifier: "public.video") as? URL {
+    if let dataUri = try? await firstItem?.loadItem(forTypeIdentifier: "public.movie") as? URL {
       let ext = String(dataUri.lastPathComponent.split(separator: ".").last ?? "mp4")
       if let tempUrl = getTempUrl(ext: ext) {
         let data = try? Data(contentsOf: dataUri)