Skip to content
This repository has been archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Improve user command response handler
Browse files Browse the repository at this point in the history
Do not display "Ignoring unknown result..." message when processing user command.
  • Loading branch information
RoEdAl committed Jun 2, 2024
1 parent c45aa14 commit 64c5ca6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/at_response.c
Original file line number Diff line number Diff line change
Expand Up @@ -2979,6 +2979,9 @@ int at_response(struct pvt* const pvt, const struct ast_str* const response, con
ast_debug(2, "[%s] Got ICCID number\n", PVT_ID(pvt));
return at_response_ccid(pvt, response);

case CMD_USER:
return 0;

default:
break;
}
Expand Down

0 comments on commit 64c5ca6

Please sign in to comment.