Merge pull request #1688 from oxen-io/fix/download-dialog-string

Fixing store crash by removing non required spannable
This commit is contained in:
ThomasSession 2024-10-11 13:56:39 +11:00 committed by GitHub
commit 2945a9231b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,11 +37,7 @@ class DownloadDialog(private val recipient: Recipient) : DialogFragment() {
val explanation = Phrase.from(context, R.string.attachmentsAutoDownloadModalDescription) val explanation = Phrase.from(context, R.string.attachmentsAutoDownloadModalDescription)
.put(CONVERSATION_NAME_KEY, recipient.toShortString()) .put(CONVERSATION_NAME_KEY, recipient.toShortString())
.format() .format()
val spannable = SpannableStringBuilder(explanation) text(explanation)
val startIndex = explanation.indexOf(name)
spannable.setSpan(StyleSpan(Typeface.BOLD), startIndex, startIndex + name.count(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
text(spannable)
button(R.string.download, R.string.AccessibilityId_download) { trust() } button(R.string.download, R.string.AccessibilityId_download) { trust() }
cancelButton { dismiss() } cancelButton { dismiss() }