Skip to content
Snippets Groups Projects
Commit 7a61263a authored by srosse's avatar srosse
Browse files

OO-1089: check if the controller is not null (disposed) before deactivating it

parent 5d87943f
No related branches found
No related tags found
No related merge requests found
...@@ -359,7 +359,9 @@ public class ScormRunController extends BasicController implements ScormAPICallb ...@@ -359,7 +359,9 @@ public class ScormRunController extends BasicController implements ScormAPICallb
@Override @Override
public void configurationChanged() { public void configurationChanged() {
scormDispC.configurationChanged(); if(scormDispC != null) {
scormDispC.configurationChanged();
}
} }
/** /**
......
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