Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
import android.webkit.MimeTypeMap;

import com.nextcloud.client.account.User;
import com.nextcloud.common.NextcloudClient;
import com.nextcloud.utils.extensions.ContextExtensionsKt;
import com.nextcloud.utils.extensions.OwnCloudClientExtensionsKt;
import com.owncloud.android.R;
import com.owncloud.android.datamodel.ArbitraryDataProviderImpl;
import com.owncloud.android.datamodel.FileDataStorageManager;
Expand All @@ -42,7 +44,6 @@
import java.lang.ref.WeakReference;
import java.nio.file.Files;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import java.util.concurrent.atomic.AtomicBoolean;

Expand Down Expand Up @@ -205,7 +206,8 @@ protected RemoteOperationResult run(OwnCloudClient client) {
dataTransferListeners.forEach(downloadOperation::addDatatransferProgressListener);
}

result = downloadOperation.execute(client);
NextcloudClient nextcloudClient = OwnCloudClientExtensionsKt.toNextcloudClient(client, operationContext);
result = downloadOperation.execute(nextcloudClient);



Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
androidCommonLibraryVersion = "0.31.0"
androidGifDrawableVersion = "1.2.30"
androidImageCropperVersion = "4.7.0"
androidLibraryVersion = "b711becb0fe4fa3b09a0ea83a498579310cc8e69"
androidLibraryVersion = "08bd486478f27fdd839431bf1a78b29ec9308689"
androidPluginVersion = '8.13.2'
androidsvgVersion = "1.4"
androidxMediaVersion = "1.5.1"
Expand Down
11 changes: 11 additions & 0 deletions gradle/verification-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19515,6 +19515,17 @@
<sha256 value="1766b0b02fe18a2f24687a75e350c157eeb1bcb5a5f13b0c9bb01d88709e842f" origin="Generated by Gradle" reason="Artifact is not signed"/>
</artifact>
</component>
<component group="com.github.nextcloud" name="android-library"
version="08bd486478f27fdd839431bf1a78b29ec9308689">
<artifact name="android-library-08bd486478f27fdd839431bf1a78b29ec9308689.aar">
<sha256 value="b2887e0c9f8ff1112e39a43f9341d5738c5d0180544b665a8df7731b7b9ea8e4"
origin="Generated by Gradle" reason="Artifact is not signed" />
</artifact>
<artifact name="android-library-08bd486478f27fdd839431bf1a78b29ec9308689.module">
<sha256 value="16e10011c4e370870570943f137589f391160bcf907915ab8de5b3b009795160"
origin="Generated by Gradle" reason="Artifact is not signed" />
</artifact>
</component>
<component group="com.github.nextcloud" name="android-library" version="0bc996e6b6">
<artifact name="android-library-0bc996e6b6.aar">
<sha256 value="944bc1de6496e567dd53573007a81102788f869d6ad83f6690f3cb4a156e1280" origin="Generated by Gradle" reason="Artifact is not signed"/>
Expand Down
Loading