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
Tags OpenOLAT_9.4.0
No related merge requests found
......@@ -359,7 +359,9 @@ public class ScormRunController extends BasicController implements ScormAPICallb
@Override
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