From d622648bab4650fc59c81773e8db4960b72c433a Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Thu, 25 Aug 2016 21:11:19 +0200 Subject: [PATCH] Bugfix --- src/se/hal/plugin/tellstick/TellstickSerialComm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/se/hal/plugin/tellstick/TellstickSerialComm.java b/src/se/hal/plugin/tellstick/TellstickSerialComm.java index 76e36165..ebee8672 100755 --- a/src/se/hal/plugin/tellstick/TellstickSerialComm.java +++ b/src/se/hal/plugin/tellstick/TellstickSerialComm.java @@ -147,7 +147,7 @@ public class TellstickSerialComm implements Runnable, return str.toString(); break; default: - str.append(c); + str.append((char)c); } } return str.toString();