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

Prevent NPE in browsers

parent 9e325442
No related branches found
No related tags found
No related merge requests found
......@@ -397,7 +397,8 @@ public abstract class BaseBrowserFragment extends SortableFragment<BaseBrowserAd
runOnBrowserThread(new Runnable() {
@Override
public void run() {
mFoldersContentLists.clear();
if (mFoldersContentLists != null)
mFoldersContentLists.clear();
initMediaBrowser(BaseBrowserFragment.this);
mCurrentParsedPosition = 0;
if (mRoot)
......
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