fix(editing-alt-text): fix small oversight on editing existing attachments without alt text

This makes the implementation hopefully bug free
This commit is contained in:
LucasGGamerM 2023-09-05 19:00:16 -03:00
parent 81d13537e3
commit bbdd1c4aa9
1 changed files with 1 additions and 1 deletions

View File

@ -607,7 +607,7 @@ public class ComposeMediaViewController{
public void saveAltTextsBeforePublishing(Runnable onSuccess, Consumer<ErrorResponse> onError){
ArrayList<UpdateAttachment> updateAltTextRequests=new ArrayList<>();
for(DraftMediaAttachment att:attachments){
if(!att.descriptionSaved && att.serverAttachment.description == null){
if(!att.descriptionSaved && (fragment.editingStatus==null || !fragment.editingStatus.mediaAttachments.contains(att.serverAttachment))){
UpdateAttachment req=new UpdateAttachment(att.serverAttachment.id, att.description);
req.setCallback(new Callback<>(){
@Override