mirror of
https://github.com/f-droid/fdroidclient.git
synced 2026-04-21 15:29:18 -04:00
Disable DownloadManager usage for stable
Since it's unstable and introduces regressions. See #445 and #459, for example.
This commit is contained in:
@@ -64,7 +64,7 @@ public class DownloaderFactory {
|
||||
|
||||
public static AsyncDownloader createAsync(Context context, URL url, File destFile, String title, String id, AsyncDownloader.Listener listener)
|
||||
throws IOException {
|
||||
if (canUseDownloadManager(context, url)) {
|
||||
if (false && canUseDownloadManager(context, url)) {
|
||||
Utils.debugLog(TAG, "Using AsyncDownloaderFromAndroid");
|
||||
return new AsyncDownloaderFromAndroid(context, listener, title, id, url.toString(), destFile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user