Skip to content

Commit

Permalink
sq
Browse files Browse the repository at this point in the history
Signed-off-by: alperozturk <[email protected]>

[skip ci]
  • Loading branch information
alperozturk96 authored and backportbot[bot] committed Sep 12, 2024
1 parent d80917d commit 0739925
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import com.nextcloud.client.jobs.transfer.TransferManager
import com.owncloud.android.R
import com.owncloud.android.datamodel.OCFile
import com.owncloud.android.db.OCUpload
import java.util.Locale

class EtmFileTransferFragment : EtmBaseFragment() {

Expand Down Expand Up @@ -96,7 +97,7 @@ class EtmFileTransferFragment : EtmBaseFragment() {
vh.state.text = transfer.state.toString()
if (transfer.progress >= 0) {
vh.progressEnabled = true
vh.progress.text = transfer.progress.toString()
vh.progress.text = String.format(Locale.getDefault(), "%d", transfer.progress)
} else {
vh.progressEnabled = false
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,6 @@ public class UploadFilesActivity extends DrawerActivity implements LocalFileList
private UploadFilesLayoutBinding binding;
private boolean isWithinEncryptedFolder = false;


@VisibleForTesting
public LocalFileListFragment getFileListFragment() {
return mFileListFragment;
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/analysis/lint-results.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
DO NOT TOUCH; GENERATED BY DRONE
<span class="mdl-layout-title">Lint Report: 3 errors and 60 warnings</span>
<span class="mdl-layout-title">Lint Report: 3 errors and 59 warnings</span>

0 comments on commit 0739925

Please sign in to comment.