Subject: | Message appears to be blank in Kopete |
If one sends an IM to a KDE4 Kopete client, the message seems to be
blank. IMs sent with Log::Dispatch::Jabber works fine. There is one
little difference between the message object in J::S and L::D::J, the
'type' property. Adding 'type' to J::S's IM fixes the issue.
--- SimpleSend.pm.bak 2009-02-15 23:54:07.000000000 +0100
+++ SimpleSend.pm 2009-02-15 23:53:12.000000000 +0100
@@ -52,6 +52,7 @@
#print STDERR "USERNAME : $username , PASSWORD :
$arguments->{password}\n";
$jabber_connection->MessageSend( to => $arguments->{target},
+ type => 'chat',
subject => $arguments->{subject},
body => $arguments->{message});
$jabber_connection->Process(1);
HAND,
Hannes