ea4k / klog

KLog is a multiplatform free hamradio logger. It runs natively on Linux, macOS and Windows.
https://www.klog.xyz
GNU General Public License v3.0
75 stars 25 forks source link

QSO are not shown after import. #578

Closed ea4k closed 1 year ago

ea4k commented 1 year ago

Ligview refresh is missing after a log import

ag5ur commented 1 year ago

In my case, they didn't appear due to band_rx being null or empty (both conditions existed). Comparing other contacts, I assume bandid and band_rx are just RX/TX versions of the same field, and I've never made contacts with them on separate bands, so I was able to just copy the value from bandid with UPDATE log SET band_rx = bandid WHERE band_rx IS NULL OR band_rx = '';.

451 is potentially related, as records from wsjtx aren't appearing either.

ea4k commented 1 year ago

Closed by PR: https://github.com/ea4k/klog/pull/579