Merge remote-tracking branch 'origin/minor_fixes' into minor_fixes
This commit is contained in:
commit
cc209261b5
1 changed files with 3 additions and 3 deletions
|
@ -177,9 +177,9 @@ public class RouteProvider {
|
|||
GPXRouteParams res = new GPXRouteParams();
|
||||
try {
|
||||
res.prepareGPXFile(this);
|
||||
} catch (Exception e) {
|
||||
log.error(e);
|
||||
app.showShortToastMessage(app.getString(R.string.gpx_parse_error));
|
||||
} catch (RuntimeException e) {
|
||||
log.error(e.getMessage(), e);
|
||||
app.showShortToastMessage(app.getString(R.string.gpx_parse_error) + " " + e.getMessage());
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue