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

Fixing store crash by removing non required spannable
release/1.20.2
ThomasSession 6 months ago committed by GitHub
commit 2945a9231b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save