Can any body tell me if this is correct way to send time stamp while sending a message
var msg = $msg({to: sendjid, type: 'chat',id: 'ping1',stamp: '2012-11-16T23:08:25Z'})
.c('body').t(text);
alert(msg);
Arthur.connection.send(msg);
will this time stamp is the correct time stamp for receiving a incoming message?
|