Commit a0d0965f8fd36f1cd83d44cdb1b45579ec3bf9e2

Authored by Adhidarma Hadiwinoto
1 parent 94ae1cf187
Exists in master

bug fixed

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -54,14 +54,14 @@ function onPm(data) {
54 54 if (last_message_hash == new_message_hash) {
55 55 return;
56 56 }
  57 + last_message_hash = new_message_hash;
57 58 */
58 59  
59 60 var greeting_suffix = "Pesan anda telah diterima dan akan segera diproses:";
60 61 if (config.globals.greeting_suffix) {
61 62 greeting_suffix = config.globals.greeting_suffix;
62 63 }
63   -
64   - last_message_hash = new_message_hash;
  64 +
65 65 ym.sendPM(data.sender, greeting_suffix + ' ' + message);
66 66  
67 67 forwardMessageToEvo(data.sender, message, formatTimestamp(data.time));