diff options
author | Vitaly Takmazov | 2018-10-31 16:14:39 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-31 16:14:39 +0300 |
commit | 9ce4cc8492522f0255d839fb13e3c09bbc87be7f (patch) | |
tree | 383ab45e102609f4fcca87ebbff1530a49c3c8a8 /juick-server/src | |
parent | d6385d656a0af52d9509f76dccce1172b663f2d9 (diff) |
You were
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"); |