fix askCloseSession

This commit is contained in:
Alexandre Gonzalvez 2020-12-18 10:00:17 +01:00
parent 62dda76977
commit a44ec93869

View file

@ -385,7 +385,7 @@ public class Controller {
}
public void closeSession(Chat c) {
sendMessage(new Msg_Text(myUser.getAddIP(),"end"), c); // tell rm session STOP
JOptionPane.showMessageDialog(null ,"Close session with "+c.getRemoteUser().getPseudo()+" loading history");
JOptionPane.showMessageDialog(null ,"Close session with "+c.getRemoteUser().getPseudo());
this.myUser.closeChat(c);
}