android: update doShareText signature

This commit is contained in:
Martín Fdez
2022-06-10 01:53:44 +02:00
committed by Frans de Jonge
parent 8ac8db69ad
commit d644b1a851
2 changed files with 6 additions and 3 deletions

View File

@@ -172,14 +172,15 @@ function ReaderHighlight:init()
-- Android devices
if Device:canShareText() then
local action = _("Share Text")
self:addToHighlightDialog("08_share_text", function(_self)
return {
text = _("Share Text"),
text = action,
callback = function()
local text = cleanupSelectedText(_self.selected_text.text)
-- call self:onClose() before calling the android framework
_self:onClose()
Device.doShareText(text)
Device:doShareText(text, action)
end,
}
end)