Download body only when uid

This commit is contained in:
M66B
2024-06-10 18:02:03 +02:00
parent 036c68941d
commit aa8fb48136
3 changed files with 7 additions and 3 deletions

View File

@@ -2187,8 +2187,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
db.operation().liveOperations(message.id, EntityOperation.BODY).observe(eowner, new Observer<TupleMessageOperation>() {
@Override
public void onChanged(TupleMessageOperation operation) {
grpDownloading.setVisibility(operation == null || operation.id == null ? View.GONE : View.VISIBLE);
ibDownload.setVisibility(operation != null && operation.id == null && !operation.content ? View.VISIBLE : View.GONE);
grpDownloading.setVisibility(operation != null &&
(operation.id != null || operation.uid == null) ? View.VISIBLE : View.GONE);
ibDownload.setVisibility(operation != null &&
operation.id == null && operation.uid != null && !operation.content ? View.VISIBLE : View.GONE);
}
});