diff options
author | George Hazan <ghazan@miranda.im> | 2017-09-25 14:08:19 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-09-25 14:08:19 +0300 |
commit | 3a3d3a6979adb9c1ab3ea34138f534414b634c20 (patch) | |
tree | cc87c75922c57be6838e2ad1a4166130260ac68f | |
parent | b7f731c3b986d0864ad9a08011c4e93bfae406f4 (diff) |
fixes #766 (Discord doesn't support metacontacts)
-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 7784b1f761..102f739be4 100644 --- a/protocols/Discord/src/proto.cpp +++ b/protocols/Discord/src/proto.cpp @@ -120,7 +120,7 @@ DWORD_PTR CDiscordProto::GetCaps(int type, MCONTACT) case PFLAG_UNIQUEIDTEXT: return (DWORD_PTR)Translate("User ID"); case PFLAG_UNIQUEIDSETTING: - return (DWORD_PTR)DB_KEY_EMAIL; + return (DWORD_PTR)DB_KEY_ID; } return 0; } |