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.
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.