1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-08-13 16:53:50 -04:00

Disable posting non-commands on the ServerInfo view

This commit is contained in:
Sebastian Kaspari 2010-03-11 00:05:04 +01:00
parent 66d3b2682b
commit 46f5d1d008

View File

@ -364,10 +364,17 @@ public class ConversationActivity extends Activity implements ServiceConnection,
if (conversation != null) {
if (!text.trim().startsWith("/")) {
String nickname = this.binder.getService().getConnection(serverId).getNick();
conversation.addMessage(new Message("<" + nickname + "> " + text));
if (conversation.getType() != Conversation.TYPE_SERVER) {
String nickname = this.binder.getService().getConnection(serverId).getNick();
conversation.addMessage(new Message("<" + nickname + "> " + text));
this.binder.getService().getConnection(serverId).sendMessage(conversation.getName(), text);
} else {
Message message = new Message("You can only chat from within a channel or a query");
message.setColor(Message.COLOR_YELLOW);
message.setIcon(R.drawable.warning);
conversation.addMessage(message);
}
onConversationMessage(conversation.getName());
this.binder.getService().getConnection(serverId).sendMessage(conversation.getName(), text);
} else {
CommandParser.getInstance().parse(text, server, conversation, binder.getService());
}