Skip to content

Commit

Permalink
Add super.onActivityResult()
Browse files Browse the repository at this point in the history
  • Loading branch information
Pygmalion69 committed Jul 27, 2019
1 parent 96f1172 commit 87762b0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/src/main/java/org/nitri/opentopo/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ public void setGpx() {
@Override
public void onActivityResult(int requestCode, int resultCode,
Intent resultData) {
super.onActivityResult(requestCode, resultCode, resultData);
if (requestCode == READ_REQUEST_CODE && resultCode == AppCompatActivity.RESULT_OK) {
if (resultData != null) {
mGpxUri = resultData.getData();
Expand Down

0 comments on commit 87762b0

Please sign in to comment.