Commit 0434ea453a320058343455849f6baa869b473f77

Authored by Victor Costa
1 parent 41519b21

Fix recent messages from chat

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
public/javascripts/chat.js
... ... @@ -594,7 +594,7 @@ jQuery(function($) {
594 594 Jabber.show_message(to['id']+'@'+group+domain, $own_name, body, 'self', from['id'], date);
595 595 } else {
596 596 var target = group!='' ? to['id'] : from['id']
597   - Jabber.show_message(target+'@'+group+domain, from['name'], body, 'other', from['id'], date);
  597 + Jabber.show_message(target+'@'+group+domain, from['name'], body, from['id'], from['id'], date);
598 598 }
599 599 });
600 600 });
... ...