Fix `(edited)` link can be copied to clipboard (#402)

This commit is contained in:
Benoit Marty 2019-08-07 12:28:21 +02:00
parent a04f4421f6
commit 35229882e3
2 changed files with 6 additions and 3 deletions

View File

@ -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:
-

View File

@ -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
}