diff options
author | George Hazan <ghazan@miranda.im> | 2019-08-21 18:32:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-08-21 18:32:55 +0300 |
commit | e598ee184d172b0ae770d8a45c6770b58ebd5db6 (patch) | |
tree | 3795717892f151c97f33a44c6d318c952f4efa6c | |
parent | e68bd4d1b2d30c1f1043ce6caf3a5722df34270c (diff) |
Discord: support for offline file transfers
-rw-r--r-- | protocols/Discord/src/proto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Discord/src/proto.cpp b/protocols/Discord/src/proto.cpp index 94b1ed0fb7..b9b1dc1810 100644 --- a/protocols/Discord/src/proto.cpp +++ b/protocols/Discord/src/proto.cpp @@ -158,7 +158,7 @@ INT_PTR CDiscordProto::GetCaps(int type, MCONTACT) case PFLAGNUM_3: return PF2_ONLINE | PF2_LONGAWAY | PF2_HEAVYDND | PF2_INVISIBLE; case PFLAGNUM_4: - return PF4_FORCEAUTH | PF4_NOCUSTOMAUTH | PF4_NOAUTHDENYREASON | PF4_SUPPORTTYPING | PF4_SUPPORTIDLE | PF4_AVATARS | PF4_IMSENDOFFLINE | PF4_SERVERMSGID; + return PF4_FORCEAUTH | PF4_NOCUSTOMAUTH | PF4_NOAUTHDENYREASON | PF4_SUPPORTTYPING | PF4_SUPPORTIDLE | PF4_AVATARS | PF4_IMSENDOFFLINE | PF4_SERVERMSGID | PF4_OFFLINEFILES; case PFLAG_UNIQUEIDTEXT: return (INT_PTR)Translate("User ID"); } |