diff options
-rw-r--r-- | protocols/Omegle/proto.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Omegle/proto.cpp b/protocols/Omegle/proto.cpp index db9d08a634..e954b9dd2c 100644 --- a/protocols/Omegle/proto.cpp +++ b/protocols/Omegle/proto.cpp @@ -102,6 +102,10 @@ DWORD_PTR OmegleProto::GetCaps( int type, HANDLE hContact ) return PF4_IMSENDUTF; // | PF4_SUPPORTTYPING;
case PFLAG_MAXLENOFMESSAGE:
return OMEGLE_MESSAGE_LIMIT;
+ case PFLAG_UNIQUEIDTEXT:
+ return (DWORD_PTR) Translate("Visible name");
+ case PFLAG_UNIQUEIDSETTING:
+ return (DWORD_PTR) "Nick";
}
return 0;
}
|