diff options
-rw-r--r-- | vdrmanager/src/de/bjusystems/vdrmanager/utils/svdrp/SvdrpClient.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vdrmanager/src/de/bjusystems/vdrmanager/utils/svdrp/SvdrpClient.java b/vdrmanager/src/de/bjusystems/vdrmanager/utils/svdrp/SvdrpClient.java index 278cf52..86240eb 100644 --- a/vdrmanager/src/de/bjusystems/vdrmanager/utils/svdrp/SvdrpClient.java +++ b/vdrmanager/src/de/bjusystems/vdrmanager/utils/svdrp/SvdrpClient.java @@ -244,7 +244,7 @@ public abstract class SvdrpClient<Result> { protected void writeLine(final String line) throws IOException { String command = line + "\r\n"; - if(Preferences.get().isSSL()){ + if(false && Preferences.get().isSSL()){ command = crypt.encrypt(command, Preferences.get().getPassword()); } final byte[] bytes = command.getBytes("utf-8"); @@ -294,7 +294,7 @@ public abstract class SvdrpClient<Result> { Log.w(TAG, usex); line = lineBytes.toString(); } - if(Preferences.get().isSSL()){ + if(false && Preferences.get().isSSL()){ line = crypt.decrypt(line, Preferences.get().getPassword()); } return line; |