Skip to content

Commit

Permalink
Update app/src/main/java/com/owncloud/android/ui/adapter/UploadListAd…
Browse files Browse the repository at this point in the history
…apter.java

Co-authored-by: Tom <[email protected]>
Signed-off-by: Jonas Mayer <[email protected]>
  • Loading branch information
JonasMayerDev and ZetaTom committed Feb 5, 2024
1 parent 1f7d4be commit c618848
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,7 @@ public void onBindViewHolder(SectionedViewHolder holder, int section, int relati
}

// show status if same file conflict or local file deleted
if (item.getUploadStatus() == UploadStatus.UPLOAD_SUCCEEDED &&
item.getLastResult() != UploadResult.UPLOADED){
if (item.getUploadStatus() == UploadStatus.UPLOAD_SUCCEEDED && item.getLastResult() != UploadResult.UPLOADED){
itemViewHolder.binding.uploadStatus.setVisibility(View.VISIBLE);
itemViewHolder.binding.uploadStatus.setTypeface(null, Typeface.BOLD);
itemViewHolder.binding.uploadDate.setVisibility(View.GONE);
Expand Down

0 comments on commit c618848

Please sign in to comment.