mirror of
https://github.com/moparisthebest/Yaaic
synced 2024-11-29 20:32:22 -05:00
I18N: DeopHandler
This commit is contained in:
parent
9e33ec9b01
commit
ba16f15079
@ -43,13 +43,13 @@ public class DeopHandler extends BaseHandler
|
|||||||
public void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException
|
public void execute(String[] params, Server server, Conversation conversation, IRCService service) throws CommandException
|
||||||
{
|
{
|
||||||
if (conversation.getType() != Conversation.TYPE_CHANNEL) {
|
if (conversation.getType() != Conversation.TYPE_CHANNEL) {
|
||||||
throw new CommandException("Only usable from within a channel");
|
throw new CommandException(service.getString(R.string.only_usable_from_channel));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (params.length == 2) {
|
if (params.length == 2) {
|
||||||
service.getConnection(server.getId()).deOp(conversation.getName(), params[1]);
|
service.getConnection(server.getId()).deOp(conversation.getName(), params[1]);
|
||||||
} else {
|
} else {
|
||||||
throw new CommandException("Invalid number of params");
|
throw new CommandException(service.getString(R.string.invalid_number_of_params));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user