Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update structures.c #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions structures.c
Original file line number Diff line number Diff line change
Expand Up @@ -979,10 +979,10 @@ void tglf_fetch_message_media_new (struct tgl_state *TLS, struct tgl_message_med
M->last_name = DS_STR_DUP (DS_MM->last_name);
M->user_id = DS_LVAL (DS_MM->user_id);
break;
//case CODE_message_media_unsupported:
case CODE_message_media_unsupported:
//case CODE_message_media_unsupported_l22:
// M->type = tgl_message_media_unsupported;
// break;
M->type = tgl_message_media_unsupported;
break;
case CODE_message_media_web_page:
M->type = tgl_message_media_webpage;
M->webpage = tglf_fetch_alloc_webpage_new (TLS, DS_MM->webpage);
Expand Down