Fix escape issue with } character in chat

This commit is contained in:
Etoh 2017-05-28 15:49:05 +01:00
parent 546901a55b
commit e36bd34d44

View File

@ -146,7 +146,6 @@ class MplayerPlayer(BasePlayer):
text = text.replace("\\", "\\\\")
text = text.replace("{", "\\\\{")
text = text.replace("}", "\\\\}")
text = text.replace("}", "\\\\}")
text = text.replace("<SYNCPLAY_QUOTE>","\\\"")
return text