Prevent crash when image url is empty string

This commit is contained in:
Martin Fietz 2016-06-23 13:04:10 +02:00
parent b7dfea13b0
commit 13fa133f3d
1 changed files with 3 additions and 1 deletions

View File

@ -86,7 +86,9 @@ public class ApOkHttpUrlLoader implements ModelLoader<String, InputStream> {
public DataFetcher<InputStream> getResourceFetcher(String model, int width, int height) {
Log.d(TAG, "getResourceFetcher() called with: " + "model = [" + model + "], width = ["
+ width + "], height = [" + height + "]");
if(model.startsWith("/")) {
if(TextUtils.isEmpty(model)) {
return null;
} else if(model.startsWith("/")) {
return new AudioCoverFetcher(model);
} else {
GlideUrl url = new GlideUrl(model);