Browse Source
android - fix external app not reading text in clipboard (#20023)
pull/20055/head
Emmanuel Hansen
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
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)) |
|
|
|
|