aboutsummaryrefslogtreecommitdiff
path: root/juick-commands/src/main/java/com/juick/command/SubscribeUser.java
diff options
context:
space:
mode:
Diffstat (limited to 'juick-commands/src/main/java/com/juick/command/SubscribeUser.java')
-rw-r--r--juick-commands/src/main/java/com/juick/command/SubscribeUser.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/juick-commands/src/main/java/com/juick/command/SubscribeUser.java b/juick-commands/src/main/java/com/juick/command/SubscribeUser.java
index f8204525..849a7c06 100644
--- a/juick-commands/src/main/java/com/juick/command/SubscribeUser.java
+++ b/juick-commands/src/main/java/com/juick/command/SubscribeUser.java
@@ -1,7 +1,6 @@
package com.juick.command;
import com.juick.User;
-import com.juick.server.protocol.ProtocolListener;
import com.juick.service.SubscriptionService;
import com.juick.service.UserService;
import lombok.Getter;
@@ -39,7 +38,7 @@ public class SubscribeUser extends MultiArgsCommand {
}
@Override
- protected String execute(User sender, ProtocolListener protocolListener, String... arguments) {
+ protected String execute(User sender, MessageListener protocolListener, String... arguments) {
boolean subscribe = arguments[0].equalsIgnoreCase("s");
User toUser = getUserService().getUserByName(arguments[1]);
if (toUser.getUid() > 0) {