Browse Source

android - fix external app not reading text in clipboard (#20023)

Emmanuel Hansen 4 weeks ago
parent
commit
60415288b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Android/Avalonia.Android/Platform/ClipboardImpl.cs

+ 1 - 1
src/Android/Avalonia.Android/Platform/ClipboardImpl.cs

@@ -85,7 +85,7 @@ namespace Avalonia.Android.Platform
                 if (DataFormat.Text.Equals(dataFormat))
                 {
                     var text = await item.TryGetValueAsync(DataFormat.Text);
-                    return new ClipData.Item(text, string.Empty);
+                    return new ClipData.Item(text);
                 }
 
                 if (DataFormat.File.Equals(dataFormat))