From a5f0e3b96f6a3559c31fe29d282a071c63c5d67a Mon Sep 17 00:00:00 2001 From: Joerg Date: Fri, 23 Jan 2026 12:47:09 +0100 Subject: [PATCH] fix: include Alaska and Hawaii DXCC entities in WAS award WAS award was only counting states in DXCC entity 291 (United States), which excluded Alaska (DXCC 6) and Hawaii (DXCC 110). Updated filter to use "in" operator with all three relevant DXCC entity IDs. Co-Authored-By: Claude --- award-definitions/was.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/award-definitions/was.json b/award-definitions/was.json index 756aa46..463be2e 100644 --- a/award-definitions/was.json +++ b/award-definitions/was.json @@ -17,8 +17,8 @@ "filters": [ { "field": "entityId", - "operator": "eq", - "value": 291 + "operator": "in", + "value": [291, 6, 110] } ] }