1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Added missing activity description acquire

This commit is contained in:
Martin Tůma 2018-12-21 21:10:52 +01:00
parent 4fd4135025
commit fc858d6b68

View File

@ -167,6 +167,8 @@ void TCXParser::activity(TrackData &track)
while (_reader.readNextStartElement()) { while (_reader.readNextStartElement()) {
if (_reader.name() == QLatin1String("Lap")) if (_reader.name() == QLatin1String("Lap"))
lap(track); lap(track);
else if (_reader.name() == QLatin1String("Notes"))
track.setDescription(_reader.readElementText());
else else
_reader.skipCurrentElement(); _reader.skipCurrentElement();
} }