TAG 1.1.5
[euphorik.git] / js / pageMinichat / pageMinichat.js
index b71efea..b40f568 100755 (executable)
@@ -245,8 +245,6 @@ euphorik.PageMinichat.prototype.envoyerMessage = function(message) {
       return;
    }
    
-   this.client.pseudo = pseudo;
-
    if (!this.client.authentifie()) {
       if (!this.client.enregistrement()) {
          this.util.messageDialogue("login impossible");
@@ -261,9 +259,11 @@ euphorik.PageMinichat.prototype.envoyerMessage = function(message) {
    }
    this.envoieMessageEnCours = true;
    
+   this.client.pseudo = pseudo;
+   
    this.communication.requete(
       "put_message",
-      this.getJSONMessage(pseudo, message),
+      this.getJSONMessage(this.client.pseudo, message),
       function() {
          $("form#posterMessage input.message").val("");
          thisPageMinichat.conversations.enleverMessagesRepond();