diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-25 22:36:52 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-25 22:36:52 +0200 |
commit | 625a0436441d688dfb525c3c7860a92c4e57c3ce (patch) | |
tree | b770163a3ccb8db6a3783ca881e0ca7d436d6e62 | |
parent | d30bcfff79e7027762e89053d9c934a9358b746f (diff) | |
download | AntennaPod-625a0436441d688dfb525c3c7860a92c4e57c3ce.zip |
Fixed bug in calculation of free space
-rw-r--r-- | src/de/danoeh/antennapod/service/download/HttpDownloader.java | 7 | ||||
-rw-r--r-- | src/de/danoeh/antennapod/util/StorageUtils.java | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/src/de/danoeh/antennapod/service/download/HttpDownloader.java b/src/de/danoeh/antennapod/service/download/HttpDownloader.java index 14ca0000f..a12cf3e48 100644 --- a/src/de/danoeh/antennapod/service/download/HttpDownloader.java +++ b/src/de/danoeh/antennapod/service/download/HttpDownloader.java @@ -57,9 +57,10 @@ public class HttpDownloader extends Downloader { status.setSize(connection.getContentLength()); if (AppConfig.DEBUG) Log.d(TAG, "Size is " + status.getSize()); - if (status.getSize() == -1 - || status.getSize() <= StorageUtils - .getFreeSpaceAvailable()) { + long freeSpace = StorageUtils.getFreeSpaceAvailable(); + if (AppConfig.DEBUG) + Log.d(TAG, "Free space is " + freeSpace); + if (status.getSize() == -1 || status.getSize() <= freeSpace) { if (AppConfig.DEBUG) Log.d(TAG, "Size is " + status.getSize()); publishProgress(); diff --git a/src/de/danoeh/antennapod/util/StorageUtils.java b/src/de/danoeh/antennapod/util/StorageUtils.java index eb3b5d3a4..db61ff356 100644 --- a/src/de/danoeh/antennapod/util/StorageUtils.java +++ b/src/de/danoeh/antennapod/util/StorageUtils.java @@ -28,9 +28,11 @@ public class StorageUtils { } /** Get the number of free bytes that are available on the external storage. */ - public static int getFreeSpaceAvailable() { + public static long getFreeSpaceAvailable() { StatFs stat = new StatFs(Environment.getExternalStorageDirectory().getPath()); - return stat.getAvailableBlocks() * stat.getBlockSize(); + long availableBlocks = stat.getAvailableBlocks(); + long blockSize = stat.getBlockSize(); + return availableBlocks * blockSize; } public static boolean externalStorageMounted() { |