Skip to content
Snippets Groups Projects
Commit 4e6ea5e4 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed a minor bug that crashed the app

parent 144d75b0
No related branches found
No related tags found
No related merge requests found
......@@ -227,6 +227,9 @@ public class BufferViewConfigAdapter extends ExpandableRecyclerAdapter<NetworkVi
}
public void selectConfig(int id) {
if (context.client() == null || context.client().bufferViewManager() == null)
return;
QBufferViewConfig newconfig = context.client().bufferViewManager().bufferViewConfig(id);
Parcelable state = (newconfig == config) ? saveState() : null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment