Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
df628264
Commit
df628264
authored
May 13, 2015
by
vvaltman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed bug in load_photo ()
parent
4afd5d5c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
interface.c
interface.c
+2
-0
tgl
tgl
+1
-1
No files found.
interface.c
View file @
df628264
...
@@ -799,6 +799,7 @@ void do_ ## act ## _ ## tp (struct command *command, int arg_num, struct arg arg
...
@@ -799,6 +799,7 @@ void do_ ## act ## _ ## tp (struct command *command, int arg_num, struct arg arg
assert (arg_num == 1);\
assert (arg_num == 1);\
struct tgl_message *M = tgl_message_get (TLS, args[0].num);\
struct tgl_message *M = tgl_message_get (TLS, args[0].num);\
if (M && !(M->flags & TGLMF_SERVICE)) {\
if (M && !(M->flags & TGLMF_SERVICE)) {\
if (ev) { ev->refcnt ++; } \
if (M->media.type == tgl_message_media_photo) { \
if (M->media.type == tgl_message_media_photo) { \
tgl_do_load_photo (TLS, M->media.photo, actf, ev);\
tgl_do_load_photo (TLS, M->media.photo, actf, ev);\
} else if (M->media.type == tgl_message_media_document) {\
} else if (M->media.type == tgl_message_media_document) {\
...
@@ -821,6 +822,7 @@ void do_ ## act ## _ ## tp ## _thumb (struct command *command, int arg_num, stru
...
@@ -821,6 +822,7 @@ void do_ ## act ## _ ## tp ## _thumb (struct command *command, int arg_num, stru
struct tgl_message *M = tgl_message_get (TLS, args[0].num);\
struct tgl_message *M = tgl_message_get (TLS, args[0].num);\
if (M && !(M->flags & TGLMF_SERVICE)) {\
if (M && !(M->flags & TGLMF_SERVICE)) {\
if (M->media.type == tgl_message_media_document) {\
if (M->media.type == tgl_message_media_document) {\
if (ev) { ev->refcnt ++; } \
tgl_do_load_document_thumb (TLS, M->media.document, actf, ev);\
tgl_do_load_document_thumb (TLS, M->media.document, actf, ev);\
}\
}\
}\
}\
...
...
tgl
@
d3680da8
Subproject commit
c7fb3c04cc796fca03ab9d1e5ecbf8a48a3a76aa
Subproject commit
d3680da8636f4fdd58c91bb352f1bc9ceccd8961
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment