We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0941c8e commit cbd1817Copy full SHA for cbd1817
app/src/main/java/com/owncloud/android/operations/SynchronizeFileOperation.java
@@ -302,14 +302,14 @@ private void requestForUpload(OCFile file) {
302
303
private void requestForDownload(OCFile file) {
304
final var fileDownloadHelper = FileDownloadHelper.Companion.instance();
305
- String filename = file.getFileName();
+ final var filename = file.getFileName();
306
307
if (syncInBackgroundWorker) {
308
Log_OC.d(TAG, "downloading file without notification: " + filename);
309
310
try {
311
final var operation = new DownloadFileOperation(mUser, file, mContext);
312
- var result = operation.execute(getClient());
+ final var result = operation.execute(getClient());
313
314
mTransferWasRequested = true;
315
0 commit comments