mirror of
https://github.com/miaowware/qrm2.git
synced 2025-05-24 02:12:31 -04:00
parent
786440edcb
commit
f26a7af928
@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- eQSL, paper QSL, and Logbook of the World status in `?qrz` sometimes being shown incorrectly.
|
||||||
|
|
||||||
|
|
||||||
## [2.4.1] - 2020-10-06
|
## [2.4.1] - 2020-10-06
|
||||||
|
@ -146,15 +146,15 @@ def qrz_process_info(data: dict):
|
|||||||
if address == "":
|
if address == "":
|
||||||
address = None
|
address = None
|
||||||
if "eqsl" in data:
|
if "eqsl" in data:
|
||||||
eqsl = "Yes" if data["eqsl"] == 1 else "No"
|
eqsl = "Yes" if data["eqsl"] == "1" else "No"
|
||||||
else:
|
else:
|
||||||
eqsl = "Unknown"
|
eqsl = "Unknown"
|
||||||
if "mqsl" in data:
|
if "mqsl" in data:
|
||||||
mqsl = "Yes" if data["mqsl"] == 1 else "No"
|
mqsl = "Yes" if data["mqsl"] == "1" else "No"
|
||||||
else:
|
else:
|
||||||
mqsl = "Unknown"
|
mqsl = "Unknown"
|
||||||
if "lotw" in data:
|
if "lotw" in data:
|
||||||
lotw = "Yes" if data["lotw"] == 1 else "No"
|
lotw = "Yes" if data["lotw"] == "1" else "No"
|
||||||
else:
|
else:
|
||||||
lotw = "Unknown"
|
lotw = "Unknown"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user