fix special characters appearing in recieved PM's

This commit is contained in:
mappu 2016-11-04 19:01:01 +13:00
parent b63a240e9b
commit 0a53963ec0
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ func (this *HubConnection) processProtocolMessage(message string) {
if rx_incomingTo.MatchString(commandParts[1]) {
txparts := rx_incomingTo.FindStringSubmatch(commandParts[1])
if txparts[1] == this.Hco.Self.Nick && txparts[2] == txparts[3] {
this.processEvent(HubEvent{EventType: EVENT_PRIVATE, Nick: txparts[2], Message: txparts[4]})
this.processEvent(HubEvent{EventType: EVENT_PRIVATE, Nick: txparts[2], Message: NMDCUnescape(txparts[4])})
valid = true
}
}