Fix: update ASN regex to support Unicode (#5099)

This commit is contained in:
Evgenii 2023-12-26 03:33:30 +03:00 committed by GitHub
parent 74e89b0ee3
commit 151d337f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ class BarcodeReader:
asn_text = asn_text[len(settings.CONSUMER_ASN_BARCODE_PREFIX) :].strip()
# remove non-numeric parts of the remaining string
asn_text = re.sub("[^0-9]", "", asn_text)
asn_text = re.sub(r"\D", "", asn_text)
# now, try parsing the ASN number
try: