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

OO-3525: don't update the summary if disposed

parent ac8148e8
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,9 @@ public class TableOfContentController extends BasicController implements TooledC
}
void updateSummaryView(UserRequest ureq) {
summaryCtrl.reload(ureq);
if(summaryCtrl != null) {
summaryCtrl.reload(ureq);
}
}
private String getGuiPrefsKey(OLATResourceable binderOres) {
......
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