diff options
author | thlo <smarttv640@gmail.com> | 2013-09-14 18:11:01 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-14 18:11:01 +0200 |
commit | e48a23b9825dfe731a8ceb663cef9c12b593e6bd (patch) | |
tree | 60ea6d142d10c65f79fd1f788fab00e00197664d /httpclient.c | |
parent | e8943979b23221d325697dde753842a5ced569d4 (diff) | |
parent | 60bfd8aad9a4ab7d810d6a6bf82fe71f64d56263 (diff) | |
download | vdr-plugin-smarttvweb-e48a23b9825dfe731a8ceb663cef9c12b593e6bd.tar.gz vdr-plugin-smarttvweb-e48a23b9825dfe731a8ceb663cef9c12b593e6bd.tar.bz2 |
Merge branch 'master' of git-vdr@projects.vdr-developer.org:vdr-plugin-smarttvweb.git
Diffstat (limited to 'httpclient.c')
-rw-r--r-- | httpclient.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/httpclient.c b/httpclient.c index a3fb192..722a659 100644 --- a/httpclient.c +++ b/httpclient.c @@ -364,7 +364,6 @@ string cHttpYtPushClient::getMsgBody(int) { //------------------------------ cHttpCfgPushClient::cHttpCfgPushClient(int f, int id, int port, SmartTvServer* fac, string peer) : cHttpClientBase(f, id, port, fac, peer) { - createRequestMessage(""); } @@ -403,5 +402,5 @@ cHttpMesgPushClient::~cHttpMesgPushClient() { } string cHttpMesgPushClient::getMsgBody(int) { - return "{\"type\":\"MESG\",payload:" + mMesg +"}";; + return "{\"type\":\"MESG\",payload:\"" + mMesg +"\"}";; } |