1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 08:52:18 -05:00

Implemented onServerResponse() (default: disabled), disabled onUnknown as well by default

This commit is contained in:
Sebastian Kaspari 2010-03-13 21:55:21 +01:00
parent d321e2930f
commit 7376ba7856

View File

@ -555,6 +555,12 @@ public class IRCConnection extends PircBot
@Override
protected void onUnknown(String line)
{
debug("Unknown", line);
return;
/*
// Currently disabled... to much text
Message message = new Message(line);
message.setIcon(R.drawable.action);
message.setColor(Message.COLOR_GREY);
@ -564,6 +570,28 @@ public class IRCConnection extends PircBot
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
intent.putExtra(Broadcast.EXTRA_CONVERSATION, ServerInfo.DEFAULT_NAME);
service.sendBroadcast(intent);
*/
}
/**
* On server response
*/
@Override
protected void onServerResponse(int code, String response)
{
debug("ServerResponse", code + " " + response);
return;
/*
// Currently disabled... to much text
Message message = new Message(response);
server.getConversation(ServerInfo.DEFAULT_NAME).addMessage(message);
Intent intent = new Intent(Broadcast.CONVERSATION_MESSAGE);
intent.putExtra(Broadcast.EXTRA_SERVER, server.getId());
intent.putExtra(Broadcast.EXTRA_CONVERSATION, ServerInfo.DEFAULT_NAME);
service.sendBroadcast(intent);
*/
}
/**