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 <noreply@anthropic.com>
This commit is contained in:
2026-01-23 12:47:09 +01:00
parent b09e2b3ea2
commit a5f0e3b96f

View File

@@ -17,8 +17,8 @@
"filters": [
{
"field": "entityId",
"operator": "eq",
"value": 291
"operator": "in",
"value": [291, 6, 110]
}
]
}