Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
json.c : 933
Browse files Browse the repository at this point in the history
cm_temp to object
  • Loading branch information
h4child committed Mar 2, 2018
1 parent 614358a commit eb099dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json.c
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ ChatMember *chat_member_array_parse (json_t *cm_array) {
ChatMember *object = chat_member_parse(json_array_get(cm_array, 0));

for (i = 1; i < sz; i++) {
chat_member_add(cm_temp, chat_member_parse(json_array_get(cm_array, i)));
chat_member_add(object, chat_member_parse(json_array_get(cm_array, i)));
}
}

Expand Down

0 comments on commit eb099dc

Please sign in to comment.