Skip to content

Commit

Permalink
Merge pull request #9 from hallahan/master
Browse files Browse the repository at this point in the history
Specifically make sure OSM files are uploaded to the server.
  • Loading branch information
mitchellsundt committed Dec 21, 2015
2 parents 1ed93d2 + 756ca24 commit 2500b78
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ private boolean uploadOneSubmission(String urlString, String id, String instance
files.add(f);
} else if (extension.equals("mp4")) { // legacy 0.9x
files.add(f);
} else if (extension.equals("osm")) { // legacy 0.9x
files.add(f);
} else {
Log.w(t, "unrecognized file type " + f.getName());
}
Expand Down

0 comments on commit 2500b78

Please sign in to comment.