Mercurial > 510ConnectbotMonitor
changeset 7:992dca085fa2
allow async tts
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 23 Jun 2014 17:14:44 -0700 |
parents | 31979440706a |
children | e7cdd6eaaeb3 |
files | src/com/five_ten_sg/connectbot/monitor/MonitorService.java |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/monitor/MonitorService.java Mon Jun 23 17:13:18 2014 -0700 +++ b/src/com/five_ten_sg/connectbot/monitor/MonitorService.java Mon Jun 23 17:14:44 2014 -0700 @@ -412,7 +412,7 @@ } } - public static void teSpeak(int connection, String msg, boolean flush, boolean synchronous) { + public static void teSpeak(int connection, byte [] msg, boolean flush, boolean synchronous) { CommunicationThread cm = clients.get(connection); if (cm != null) cm.speak(msg, flush, synchronous); }