Centurix / Pantastic

Credit Card PAN scanner.
16 stars 3 forks source link

test_string variable needs to be converted to string from bytes to be compared to ignore list #3

Closed slightsey-recurly closed 9 months ago

slightsey-recurly commented 9 months ago

Currently, the card number in the test_string varaible is built as a byte variable and then compared to the ignore list which is an array of strings. This always fails since its comparing two different data types.

This converts the test_string variable that is being compared to the ignore list to a string before comparison to work properly.

Centurix commented 9 months ago

Thanks for the contribution! Very much appreciated!