You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just tried to import ADI file with multiple records all on one line (no newline after EOR) and CQRLOG imported just the first entry and ignored the rest.
Adding the newline after each EOR into the ADI file fixed the issue.
Within a Record, QSO-Data-Specifiers may appear in any order. Characters between QSO-Data-Specifiers are ignored, as are
characters between QSO-Data-Specifiers and End-of-Record tags; this permits the insertion of line break characters to improve
readability by users, or the insertion of any other information an ADI-exporting application cares to provide; ADI-importing applications
are free to ignore such characters.
I just tried to import ADI file with multiple records all on one line (no newline after EOR) and CQRLOG imported just the first entry and ignored the rest.
Adding the newline after each EOR into the ADI file fixed the issue.
From the ADIF specification (http://www.adif.org/310/ADIF_310.htm#ADI_Record):
The issue is here, CQRLOG reads a full line per entry: https://github.com/ok2cqr/cqrlog/blob/master/src/fAdifImport.pas#L812 This consumes the data for all entries when parsing the first one. Next iteration of the loop calls readln again and gets nothing.
The text was updated successfully, but these errors were encountered: