aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/src/github/daneren2005
diff options
context:
space:
mode:
Diffstat (limited to 'subsonic-android/src/github/daneren2005')
-rw-r--r--subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java11
1 files changed, 10 insertions, 1 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java b/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java
index 1965615c..a5038273 100644
--- a/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java
+++ b/subsonic-android/src/github/daneren2005/dsub/util/ImageLoader.java
@@ -211,6 +211,15 @@ public class ImageLoader implements Runnable {
public void execute() {
try {
+ loadImage();
+ } catch(OutOfMemoryError e) {
+ Log.w(TAG, "Ran out of memory trying to load image, try cleanup and retry");
+ cache.clear();
+ loadImage();
+ }
+ }
+ public void loadImage() {
+ try {
MusicService musicService = MusicServiceFactory.getMusicService(mContext);
Bitmap bitmap = musicService.getCoverArt(mContext, mEntry, mSize, mSaveToFile, null);
@@ -222,7 +231,7 @@ public class ImageLoader implements Runnable {
} catch (Throwable x) {
Log.e(TAG, "Failed to download album art.", x);
}
- }
+ }
}
private abstract class ImageLoaderTaskHandler implements Runnable {