mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 08:40:03 +02:00
Missing media description for previews
This commit is contained in:
parent
663e33466d
commit
7603db8ce0
2 changed files with 5 additions and 1 deletions
|
@ -2259,6 +2259,9 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
if ((!fullAttachement || statusToDeal.sensitive) && !singleImage) {
|
||||
layoutMediaBinding.count.setText(String.format(Locale.getDefault(), "%d/%d", mediaPosition, statusToDeal.media_attachments.size()));
|
||||
}
|
||||
if (attachment.description != null && attachment.description.trim().length() > 0) {
|
||||
layoutMediaBinding.media.setContentDescription(attachment.description.trim());
|
||||
}
|
||||
String finalUrl;
|
||||
if (attachment.url == null) {
|
||||
finalUrl = attachment.remote_url;
|
||||
|
|
|
@ -9,8 +9,9 @@ Added:
|
|||
|
||||
Fixed:
|
||||
- Dynamic color for Android 12+
|
||||
- Missing media description for previews
|
||||
- Fix a crash when replying
|
||||
- Fix button size not changed
|
||||
- Forward tags in replies
|
||||
- Media cannot be downloaded or shared with Android 10
|
||||
- Some crashes
|
||||
- Some crashes
|
Loading…
Reference in a new issue