Bug Fix
- Fixed: Empty
ALLOWLISTandCUSTOM_BLOCKLISTSenv vars were creating['']instead of[], causing allowlist matching to fail (#36)
Before: ALLOWLIST="" → [''] (empty string in list)
After: ALLOWLIST="" → [] (empty list)
Thanks @smark91 for reporting!