Commit 67442d3f3cf743260503e3d0d1ab8003cf440a39

Authored by Victor Costa
Committed by Rodrigo Souto
1 parent 91d3f88b

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 });
... ...