IM cleanup on 1.0.x branch:
* Fake_XMPP back to Queued_XMPP, refactor how we use it and don't create objects and load classes until we need them. * fix fatal error in IM settings while waiting for a Jabber confirmation. * Caching fix for user_im_prefs * fix for saving multiple transport settings * some fixes for AIM & using normalized addresses for lookups
This commit is contained in:
@@ -126,6 +126,11 @@ class AimPlugin extends ImPlugin
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Accept a queued input message.
|
||||
*
|
||||
* @return true if processing completed, false if message should be reprocessed
|
||||
*/
|
||||
function receive_raw_message($message)
|
||||
{
|
||||
$info=Aim::getMessageInfo($message);
|
||||
@@ -133,7 +138,9 @@ class AimPlugin extends ImPlugin
|
||||
$user = $this->get_user($from);
|
||||
$notice_text = $info['message'];
|
||||
|
||||
return $this->handle_incoming($from, $notice_text);
|
||||
$this->handle_incoming($from, $notice_text);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function initialize(){
|
||||
|
Reference in New Issue
Block a user