Skip to content

Commit

Permalink
Fix LibreOffice#62 Null Pointer Exception when trying to export Exten…
Browse files Browse the repository at this point in the history
…sion Projects

The exception was fixed when a particular function which was being called even when there were no Extension Projects was put under proper if condition
  • Loading branch information
shobhanmandal committed Feb 28, 2018
1 parent 277a317 commit 22d02c6
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@ private void loadData() {
i++;
}

mContentSelector.loadDefaults();
if(selected!=false){
mContentSelector.loadDefaults();
}

restoreWidgetValues();
}
Expand Down

0 comments on commit 22d02c6

Please sign in to comment.