1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-01-18 19:52:09 +01:00

Allow "quoted" CSV files not ending with CRLF

This commit is contained in:
Martin Tůma 2021-06-06 08:04:21 +02:00
parent 7163441cb5
commit d291320832

View File

@ -63,5 +63,5 @@ bool CSV::readEntry(QStringList &list)
list.append(field); list.append(field);
return (state == 0); return (state == 0 || (state == 2 && _device->atEnd()));
} }