You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found and issue in GenerateNonce function in the _helpers file. local char_pos = math.floor(math.random() * #NONCE_CHARS)
This will generate 0 based indexes, so it needs +1 on the end of it for it to work correctly.
The text was updated successfully, but these errors were encountered:
I found and issue in GenerateNonce function in the _helpers file.
local char_pos = math.floor(math.random() * #NONCE_CHARS)
This will generate 0 based indexes, so it needs +1 on the end of it for it to work correctly.
The text was updated successfully, but these errors were encountered: