- Timestamp:
- 2018-03-19T03:22:22Z (7 years ago)
- Branches:
- master
- Children:
- 4528a52
- Parents:
- 686ac51
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/purple/purple.c
r686ac51 r7a99a0c 31 31 #include <purple.h> 32 32 33 #if !PURPLE_VERSION_CHECK(2, 12, 0) 34 #define PURPLE_MESSAGE_REMOTE_SEND 0x10000 35 #endif 36 33 37 GSList *purple_connections; 34 38 … … 1204 1208 static void prplcb_conv_msg(PurpleConversation *conv, const char *who, const char *message, PurpleMessageFlags flags, time_t mtime) 1205 1209 { 1206 if ((!(flags & PURPLE_MESSAGE_SEND)) || (flags & PURPLE_MESSAGE_DELAYED)) { 1210 if ((!(flags & PURPLE_MESSAGE_SEND)) || 1211 (flags & PURPLE_MESSAGE_DELAYED) || 1212 (flags & PURPLE_MESSAGE_REMOTE_SEND) 1213 ) { 1207 1214 handle_conv_msg(conv, who, message, (flags & PURPLE_MESSAGE_SEND) ? OPT_SELFMESSAGE : 0, mtime); 1208 1215 }
Note: See TracChangeset
for help on using the changeset viewer.