Don't use download manager for Bluetooth downloads.

The F-Droid Bluetooth downloader must be used for these, as it is a
custom protocol and Android download manager only understands HTTP
and HTTPS.
This commit is contained in:
Peter Serwylo 2015-10-10 08:44:44 +11:00
parent 012cdce37b
commit f388f32fcf

View File

@ -108,6 +108,10 @@ public class DownloaderFactory {
// We support onion addresses through our own downloader.
return false;
}
if (isBluetoothAddress(url)) {
// Completely differnet protocol not understood by the download manager.
return false;
}
return hasDownloadManager(context);
}