summaryrefslogtreecommitdiff
path: root/plugins/Jingle
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Jingle')
-rw-r--r--plugins/Jingle/src/account.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Jingle/src/account.cpp b/plugins/Jingle/src/account.cpp
index b2be77922b..9a334942e1 100644
--- a/plugins/Jingle/src/account.cpp
+++ b/plugins/Jingle/src/account.cpp
@@ -127,10 +127,10 @@ static BOOL OnProcessJingle(struct IJabberInterface *api, const TiXmlElement *no
}
// Save this event to history
- PROTORECVEVENT recv = {};
- recv.timestamp = (uint32_t)time(0);
- recv.szMessage = "** A call while we were busy **";
- ProtoChainRecvMsg(api->ContactFromJID(from), &recv);
+ DB::EventInfo dbei;
+ dbei.timestamp = (uint32_t)time(0);
+ dbei.pBlob = "** A call while we were busy **";
+ ProtoChainRecvMsg(api->ContactFromJID(from), dbei);
reason = "busy";
}