fix: key needs to be 33 bytes

This commit is contained in:
Derrick Hammer 2024-01-16 15:26:36 -05:00
parent e1709a7910
commit f34f009f17
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ func (h *HttpHandler) AccountRegister(jc jape.Context) {
return
}
if len(decodedKey) != 32 {
if len(decodedKey) != 33 {
errored(err)
return
}