diff options
Diffstat (limited to 'juick-server/src')
-rw-r--r-- | juick-server/src/main/java/com/juick/server/CommandsManager.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-server/src/main/java/com/juick/server/CommandsManager.java b/juick-server/src/main/java/com/juick/server/CommandsManager.java index a0904d33..82143482 100644 --- a/juick-server/src/main/java/com/juick/server/CommandsManager.java +++ b/juick-server/src/main/java/com/juick/server/CommandsManager.java @@ -330,7 +330,7 @@ public class CommandsManager { if (subscriptionService.unSubscribeUser(user, toUser)) { return CommandResult.fromString("Unsubscribed from @" + toUser.getName()); } - return CommandResult.fromString("You was not subscribed to @" + toUser.getName()); + return CommandResult.fromString("You were not subscribed to @" + toUser.getName()); } return CommandResult.fromString("Error"); } @@ -347,7 +347,7 @@ public class CommandsManager { if (subscriptionService.unSubscribeTag(user, tag)) { return CommandResult.fromString("Unsubscribed from " + tag.getName()); } - return CommandResult.fromString("You was not subscribed to " + tag.getName()); + return CommandResult.fromString("You were not subscribed to " + tag.getName()); } return CommandResult.fromString("Error"); } @@ -368,7 +368,7 @@ public class CommandsManager { if (subscriptionService.unSubscribeMessage(mid, user.getUid())) { return CommandResult.fromString("Unsubscribed from #" + mid); } - return CommandResult.fromString("You was not subscribed to #" + mid); + return CommandResult.fromString("You were not subscribed to #" + mid); } } return CommandResult.fromString("Error"); |