diff --git a/OsmAnd/src/net/osmand/plus/helpers/GpxImportHelper.java b/OsmAnd/src/net/osmand/plus/helpers/GpxImportHelper.java index f2f7e8ecf6..8384b4b3b6 100644 --- a/OsmAnd/src/net/osmand/plus/helpers/GpxImportHelper.java +++ b/OsmAnd/src/net/osmand/plus/helpers/GpxImportHelper.java @@ -354,6 +354,9 @@ public class GpxImportHelper { for (GPXUtilities.WptPt p : wptPts) { if (p.category != null) { final FavouritePoint fp = new FavouritePoint(p.lat, p.lon, p.name, p.category); + if (p.desc!=null) { + fp.setDescription(p.desc); + } favourites.add(fp); } else if (p.name != null) { int c;