diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-09-11 17:44:27 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-09-11 17:44:27 +0000 |
commit | 2ba67eb43c31f37d87b60f920be31f85e5273865 (patch) | |
tree | 4978a7ab93940c63ec77792cf2ff8bc9d7552daa /protocols/Tox/src/tox_proto.cpp | |
parent | 96261c4359752ed0ebaf2340209a85f0916ab3c1 (diff) |
Tox: fixed file sending
git-svn-id: http://svn.miranda-ng.org/main/trunk@10431 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 fa08e4f42f..2461aa0518 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_FILERECV | PF1_AUTHREQ | PF1_EXTSEARCH;
+ return PF1_IM | PF1_FILE | PF1_AUTHREQ | PF1_EXTSEARCH;
case PFLAGNUM_2:
return PF2_ONLINE | PF2_SHORTAWAY | PF2_LIGHTDND;
case PFLAGNUM_4:
|