fix: response must be 65 bytes
This commit is contained in:
parent
5d393c3915
commit
dd5c6332f3
|
@ -268,7 +268,7 @@ func (h *HttpHandler) AccountRegister(jc jape.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
if len(decodedResponse) != 64 {
|
||||
if len(decodedResponse) != 65 {
|
||||
errored(err)
|
||||
return
|
||||
}
|
||||
|
@ -439,7 +439,7 @@ func (h *HttpHandler) AccountLogin(jc jape.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
if len(decodedResponse) != 64 {
|
||||
if len(decodedResponse) != 65 {
|
||||
errored(err)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue