Bluesky app fork with some witchin' additions 💫

[Share Extension] Use the proper identifier for if statement on iOS (#5505)

authored by hailey.at and committed by

GitHub 863764b3 702dfa85

+2 -2
+1 -1
modules/Share-with-Bluesky/Info.plist
··· 40 40 <key>CFBundleShortVersionString</key> 41 41 <string>$(MARKETING_VERSION)</string> 42 42 </dict> 43 - </plist> 43 + </plist>
+1 -1
modules/Share-with-Bluesky/ShareViewController.swift
··· 101 101 private func handleVideos(items: [NSItemProvider]) async { 102 102 let firstItem = items.first 103 103 104 - if let dataUri = try? await firstItem?.loadItem(forTypeIdentifier: "public.video") as? URL { 104 + if let dataUri = try? await firstItem?.loadItem(forTypeIdentifier: "public.movie") as? URL { 105 105 let ext = String(dataUri.lastPathComponent.split(separator: ".").last ?? "mp4") 106 106 if let tempUrl = getTempUrl(ext: ext) { 107 107 let data = try? Data(contentsOf: dataUri)