mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-01 02:02:33 +03:00
qrdecode: fix error where float was used as a string index
We needed to do an integer division not a float division. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
This commit is contained in:
parent
4f33c9fd63
commit
fc0554d711
@ -263,7 +263,7 @@ def parse_bits(bits, version):
|
||||
while l > 0:
|
||||
if l >= 2:
|
||||
num, bits = bits_to_int(bits[:11]), bits[11:]
|
||||
buf += ALPHANUM[num / 45]
|
||||
buf += ALPHANUM[num // 45]
|
||||
buf += ALPHANUM[num % 45]
|
||||
l -= 2
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user