Skip to content

Commit

Permalink
Fix #62 Null Pointer Exception when trying to export Extension Projec…
Browse files Browse the repository at this point in the history
…ts (#64)

* Fix #62 Null Pointer Exception when trying to export Extension Projects
  • Loading branch information
shobhanmandal authored and smehrbrodt committed Mar 1, 2018
1 parent c6d932a commit b8a247d
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) {
mContentSelector.loadDefaults();
}

restoreWidgetValues();
}
Expand Down

0 comments on commit b8a247d

Please sign in to comment.