Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Fix: Issue with Activity being destroyed
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonMarquis committed Apr 5, 2014
1 parent 52d3658 commit 269f112
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,9 @@ public void onDetach() {
}

void updateListView(PreferenceFile p, boolean animate) {
if (getActivity() == null || getActivity().isFinishing()) {
return;
}
if (p == null) {
if (getActivity() != null) {
getActivity().finish();
Expand Down
4 changes: 2 additions & 2 deletions PreferencesManager/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
code = 17
name = 1.7
code = 18
name = 1.7.1

0 comments on commit 269f112

Please sign in to comment.