spatialillusions / milsymbol

Military Symbols in JavaScript
www.spatialillusions.com/milsymbol
MIT License
570 stars 138 forks source link

Fix Type Mismatch Between mainSIDC and List Items Causing Conditional Failure #308

Open szrbdk opened 3 days ago

szrbdk commented 3 days ago

Description of the Issue: The mainSIDC variable is of type Number, while the list contains string items. As a result, the condition always evaluates to false.

Example: For the code "10031500001301000000", the mainSIDC resolves to 130100 (as a number), but the list item is "130100" (as a string).

This discrepancy prevents the condition from functioning as intended.