nate-parrott / Flashlight

The missing Spotlight plugin system
http://flashlight.nateparrott.com
Other
5.39k stars 411 forks source link

iMessage fails with international characters #488

Open j-rieck opened 9 years ago

j-rieck commented 9 years ago

When trying to send a message containing the Norwegian characters Æ, Ø or Å, the message does not send. No errors are printed to Console.app.

dobzhao commented 9 years ago

Same issue with Chinese characters, I modified "send_message.py" in "~//Library/FlashlightPlugins/imessage.bundle" directory from

"""%(set_selected_files, asquote(buddy), asquote(body))

to

"""%(set_selected_files, asquote(buddy), asquote(body.encode('utf8')))

and it works for me now