Skip to content

Commit

Permalink
small cosmetic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Clevero committed Aug 7, 2016
1 parent 54c5849 commit 35e145d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/TelegramBridgeUpdateHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ else if(message.hasText() && message.getText().equals("/list")){

String messageText = "You have '" + users.size() + "' users (incl. you)" + '\n';
if(users.size() > 1){
messageText += "Here is a list of your users:" + '\n';
messageText += "Here is a list of your users:" + '\n' + '\n';
for(int i = 0; i < users.size(); i++){
messageText += users.get(i) + '\n';
messageText += i+1 + ". " + users.get(i) + '\n' + '\n';
}//end for()
}//end if()
SendMessage sendMessageRequest = new SendMessage();
Expand Down

0 comments on commit 35e145d

Please sign in to comment.