We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 649591d commit 8197431Copy full SHA for 8197431
core/AlertEvaluator.cpp
@@ -360,10 +360,10 @@ AlertRule::operator QString() const
360
+ "dxCallsign: " + dxCallsign + "; "
361
+ "CQZ: " + QString::number(cqz) + "; "
362
+ "ITUZ: " + QString::number(ituz) + "; "
363
- + "POTA: " + pota + "; "
364
- + "SOTA: " + sota + "; "
365
- + "IOTA: " + iota + "; "
366
- + "WWFF: " + wwff + "; "
+ + "POTA: " + (pota ? "true" : "false") + "; "
+ + "SOTA: " + (sota ? "true" : "false") + "; "
+ + "IOTA: " + (iota ? "true" : "false") + "; "
+ + "WWFF: " + (wwff ? "true" : "false") + "; "
367
+ "dxMember: " + dxMember.join(", ") + "; "
368
+ "dxCountry: " + QString::number(dxCountry) + "; "
369
+ "dxLogStatusMap: 0b" + QString::number(dxLogStatusMap,2) + "; "
0 commit comments