Skip to content

Commit

Permalink
Fix bug on registration endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
vicwere committed Apr 4, 2024
1 parent f54fd26 commit 97a12b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/processes/registration.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function registerClient(message, user) {

const variables = decoded_message.split("*");
console.log(variables.length);
if ((variables.length != 32) && (variables.length != 28) && (variables.length != 34))
if ((variables.length != 32) && (variables.length != 28) && (variables.length != 35))
return {
code: 400,
message: variables.length
Expand Down

0 comments on commit 97a12b8

Please sign in to comment.