Skip to content

Commit 519f54e

Browse files
authored
Fixed iOS 26+ issue (#449)
1 parent 4dba16f commit 519f54e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

iOSExtensions/ShareExtension/AppContainerExtension/ShareViewController.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ private async Task ExportImageToMainApp()
8383
{
8484
data = uiImage.AsPNG();
8585
}
86+
else if (nsObject is NSData {Length: > 0} nsData) //from screenshot editor for iOS 26+
87+
{
88+
data = nsData;
89+
}
8690

8791
if (data is null)
8892
{

0 commit comments

Comments
 (0)