Skip to content
Snippets Groups Projects
Commit 4f2f4262 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Remove instanceof call in image loader

parent d9522e27
No related branches found
No related tags found
No related merge requests found
......@@ -94,15 +94,17 @@ public class AsyncImageLoader {
return;
}
if (item.getItemType() == MediaLibraryItem.TYPE_MEDIA) {
if (item instanceof MediaGroup)
item = ((MediaGroup) item).getFirstMedia();
int type = ((MediaWrapper) item).getType();
MediaWrapper mw = (MediaWrapper) item;
if (mw.getType() == MediaWrapper.TYPE_GROUP)
mw = ((MediaGroup)mw).getFirstMedia();
int type = mw.getType();
boolean isMedia = type == MediaWrapper.TYPE_AUDIO || type == MediaWrapper.TYPE_VIDEO;
Uri uri = ((MediaWrapper) item).getUri();
Uri uri = mw.getUri();
if (!isMedia && !(type == MediaWrapper.TYPE_DIR && "upnp".equals(uri.getScheme())))
return;
item = mw;
if (item.getId() == 0L && (isMedia) && "file".equals(uri.getScheme())) {
MediaWrapper mw = VLCApplication.getMLInstance().getMedia(uri);
mw = VLCApplication.getMLInstance().getMedia(uri);
if (mw != null)
item = mw;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment