forked from GitHub-Mirror/riotX-android
Fix (edited)
link can be copied to clipboard (#402)
This commit is contained in:
parent
a04f4421f6
commit
35229882e3
@ -19,7 +19,8 @@ Bugfix:
|
||||
- Close detail room screen when the room is left with another client (#256)
|
||||
- Clear notification for a room left on another client
|
||||
- Fix messages with empty `in_reply_to` not rendering (#447)
|
||||
- Fix clear cache (#408) and Logout (#205 )
|
||||
- Fix clear cache (#408) and Logout (#205)
|
||||
- Fix `(edited)` link can be copied to clipboard (#402)
|
||||
|
||||
Translations:
|
||||
-
|
||||
|
@ -694,8 +694,10 @@ class RoomDetailFragment :
|
||||
}
|
||||
|
||||
override fun onUrlLongClicked(url: String): Boolean {
|
||||
// Copy the url to the clipboard
|
||||
copyToClipboard(requireContext(), url, true, R.string.link_copied_to_clipboard)
|
||||
if (url != getString(R.string.edited_suffix)) {
|
||||
// Copy the url to the clipboard
|
||||
copyToClipboard(requireContext(), url, true, R.string.link_copied_to_clipboard)
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user