mirror of
https://github.com/Ryujinx/ryuko-ng.git
synced 2024-12-22 20:25:34 +00:00
yubicootp: bugfix
This commit is contained in:
parent
adc4931a57
commit
f5ece42b15
|
@ -92,7 +92,7 @@ class YubicoOTP(Cog):
|
|||
|
||||
# Turn the fields to a python dict for easier parsing
|
||||
datafields = resptext.strip().split("\r\n")
|
||||
datafields = {line[line.index("=") + 1:]: line[line.index("="):] for line in datafields}
|
||||
datafields = {line[line.index("=") + 1]: line[:line.index("=")] for line in datafields}
|
||||
|
||||
# Verify nonce
|
||||
assert datafields["nonce"] == nonce
|
||||
|
|
Loading…
Reference in a new issue