mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-29 20:01:50 -05:00
fix phone number lookup
This commit is contained in:
@@ -304,7 +304,7 @@ def extract_phones(job):
|
||||
phone_index = 0
|
||||
for item in first_row:
|
||||
# Note: may contain a BOM and look like \ufeffphone number
|
||||
if "phone number" in item.lower():
|
||||
if item.lower() in ["phone number", "\ufeffphone number"]:
|
||||
break
|
||||
phone_index = phone_index + 1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user