Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ configurations.configureEach {
exclude(module = "commons-logging")
}

val canonicalVersionCode = 444
val canonicalVersionName = "1.32.1"
val canonicalVersionCode = 445
val canonicalVersionName = "1.32.2"

val postFixSize = 10
val abiPostFix = mapOf(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ class ConversationOptionsBottomSheet() : BottomSheetDialogFragment(), View.OnCli
requireNotNull(args.getLong(ARG_THREAD_ID))
val addressString = requireNotNull(args.getString(ARG_ADDRESS))
val address = Address.fromSerialized(addressString)

val threadFromDb = conversationRepository.getConversationList().firstOrNull { it.recipient.address == address }

if(threadFromDb == null){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ fun DonationDialog(
// title
Text(
modifier = Modifier
.qaTag(R.string.qa_pro_badge_text)
.align(Alignment.CenterHorizontally),
text = annotatedStringResource(title),
textAlign = TextAlign.Center,
Expand Down Expand Up @@ -346,7 +347,6 @@ fun DonationDialog(
AccentFillButtonRect(
modifier = Modifier
.qaTag(R.string.qa_cta_button_positive)
.weight(1f)
.shimmerOverlay(),
text = stringResource(R.string.donateSessionAppealReadMore),
onClick = {
Expand Down