File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
app/src/main/kotlin/org/fossify/messages/adapters Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616- Fixed keyword blocking for MMS messages ([ #99 ] )
1717- Fixed contact number selection when adding members to a group ([ #456 ] )
1818- Fixed a glitch in pattern lock after incorrect attempts
19+ - Fixed disabled send button when sending images without text ([ #165 ] )
1920
2021## [ 1.3.0] - 2025-09-09
2122### Added
@@ -158,6 +159,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
158159[ #334 ] : https://github.com/FossifyOrg/Messages/issues/334
159160[ #349 ] : https://github.com/FossifyOrg/Messages/issues/349
160161[ #359 ] : https://github.com/FossifyOrg/Messages/issues/359
162+ [ #165 ] : https://github.com/FossifyOrg/Messages/issues/165
161163[ #456 ] : https://github.com/FossifyOrg/Messages/issues/456
162164[ #461 ] : https://github.com/FossifyOrg/Messages/issues/461
163165
Original file line number Diff line number Diff line change @@ -160,6 +160,10 @@ class AttachmentsAdapter(
160160 }
161161 }
162162 } else {
163+ if (attachment.isPending) {
164+ attachments.find { it.uri == attachment.uri }?.isPending = false
165+ onReady()
166+ }
163167 loadMediaPreview(this , attachment)
164168 }
165169 }
You can’t perform that action at this time.
0 commit comments