Merge pull request #7520 from hasnainvirk/cont_join_issue

LoRaWAN: Wrong return code for JoinRequest retry
pull/7512/merge
Cruz Monrreal 2018-07-19 13:06:57 -05:00 committed by GitHub
commit d91d3a6e4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -772,7 +772,7 @@ bool LoRaMac::continue_joining_process()
}
// Schedule a retry
if (handle_retransmission() != LORAWAN_STATUS_OK) {
if (handle_retransmission() != LORAWAN_STATUS_CONNECT_IN_PROGRESS) {
return false;
}