Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
diff --git a/android/src/org/rockbox/widgets/RockboxWidgetProvider.java b/android/src/org/rockbox/widgets/RockboxWidgetProvider.java index beeb81c..58fed1e 100644 public class RockboxWidgetProvider extends AppWidgetProvider CharSequence album = args.getCharSequenceExtra("album"); views.setTextViewText(R.id.infoDisplay, title+"\n"+artist+"\n"+album); CharSequence albumart = args.getCharSequenceExtra("albumart"); - if (albumart != null) - views.setImageViewUri(R.id.logo, Uri.fromFile(new File(albumart.toString()))); + if (albumart != null) /* Uri.fromFile() is buggy in <2.2 */ + views.setImageViewUri(R.id.logo, Uri.parse(new File(albumart.toString()).toString())); else views.setImageViewResource(R.id.logo, R.drawable.rockbox); }