From 3aa25385202b61c12512ced16f3724ed064fb974 Mon Sep 17 00:00:00 2001 From: Robert Burns Date: Thu, 22 Dec 2011 00:41:39 -0500 Subject: Crespo4G: Fix file downloads via browser over WiMax - 2 of 2 After developing the fix, reviewed history and found the following two commits: Add the same logic... https://github.com/CyanogenMod/android_packages_providers_DownloadProvider/commit/0a77c62a82503b38c484e0079648f0231dd85d53 Removed the logic... https://github.com/CyanogenMod/android_packages_providers_DownloadProvider/commit/ebb555c0687061993dd6a22d15f6aab2437ee8c5 Not a real clear explanation of why it was removed Change-Id: I852927649204a89d9960338a272ea1e62b4f5167 --- src/com/android/providers/downloads/DownloadInfo.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/com/android/providers/downloads/DownloadInfo.java b/src/com/android/providers/downloads/DownloadInfo.java index 00b10452..76dfff00 100644 --- a/src/com/android/providers/downloads/DownloadInfo.java +++ b/src/com/android/providers/downloads/DownloadInfo.java @@ -417,6 +417,9 @@ public class DownloadInfo { case ConnectivityManager.TYPE_WIFI: return DownloadManager.Request.NETWORK_WIFI; + case ConnectivityManager.TYPE_WIMAX: + return DownloadManager.Request.NETWORK_WIMAX; + default: return 0; } -- cgit v1.2.3