mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-15 01:35:07 +08:00
Enable URL-previews for notices
Desktop has those too.
This commit is contained in:
parent
2b780a8b76
commit
d5e76c515e
@ -2,7 +2,7 @@ Changes in Element 1.0.14 (2020-XX-XX)
|
||||
===================================================
|
||||
|
||||
Features ✨:
|
||||
-
|
||||
- Enable url previews for notices (#2562)
|
||||
|
||||
Improvements 🙌:
|
||||
-
|
||||
|
@ -32,7 +32,9 @@ internal class UrlsExtractor @Inject constructor() {
|
||||
return event.takeIf { it.getClearType() == EventType.MESSAGE }
|
||||
?.getClearContent()
|
||||
?.toModel<MessageContent>()
|
||||
?.takeIf { it.msgType == MessageType.MSGTYPE_TEXT || it.msgType == MessageType.MSGTYPE_EMOTE }
|
||||
?.takeIf { it.msgType == MessageType.MSGTYPE_TEXT ||
|
||||
it.msgType == MessageType.MSGTYPE_NOTICE ||
|
||||
it.msgType == MessageType.MSGTYPE_EMOTE }
|
||||
?.body
|
||||
?.let { urlRegex.findAll(it) }
|
||||
?.map { it.value }
|
||||
|
@ -512,6 +512,9 @@ class MessageItemFactory @Inject constructor(
|
||||
|
||||
return MessageTextItem_()
|
||||
.leftGuideline(avatarSizeProvider.leftGuideline)
|
||||
.previewUrlRetriever(callback?.getPreviewUrlRetriever())
|
||||
.imageContentRenderer(imageContentRenderer)
|
||||
.previewUrlCallback(callback)
|
||||
.attributes(attributes)
|
||||
.message(message)
|
||||
.highlighted(highlight)
|
||||
|
Loading…
Reference in New Issue
Block a user