diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-09-06 22:08:20 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-09-06 22:08:20 +0000 |
commit | 1774c615f4c188b113fb32e328b21669f266766b (patch) | |
tree | 04df8fffcf235aad08ba3fe49ade1c98826d11b9 /protocols/Tox/src/tox_proto.cpp | |
parent | eb61560d6fa9ab5e7bf895805dcedfd7870f482d (diff) |
Tox:
- fixed file receiving
- temporary disabled file sending
- updated tox core
git-svn-id: http://svn.miranda-ng.org/main/trunk@10383 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.cpp')
-rw-r--r-- | protocols/Tox/src/tox_proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp index 1ef5cf629a..4dd008e199 100644 --- a/protocols/Tox/src/tox_proto.cpp +++ b/protocols/Tox/src/tox_proto.cpp @@ -49,7 +49,7 @@ DWORD_PTR __cdecl CToxProto::GetCaps(int type, MCONTACT hContact) switch (type)
{
case PFLAGNUM_1:
- return PF1_IM | PF1_FILE | PF1_AUTHREQ | PF1_EXTSEARCH;
+ return PF1_IM | PF1_FILERECV | PF1_AUTHREQ | PF1_EXTSEARCH;
case PFLAGNUM_2:
return PF2_ONLINE | PF2_SHORTAWAY | PF2_LIGHTDND;
case PFLAGNUM_4:
|