summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorT. Lohmar <smarttv640@gmail.com>2014-08-24 21:34:24 +0200
committerT. Lohmar <smarttv640@gmail.com>2014-08-24 21:34:24 +0200
commitb098218e1dc48b8e707f03c8fb495bb786ad1fba (patch)
tree34f6a22e915017886c718434fb272e85d07bfd37
parent269b4cfbc2f02fe5562bc8c6336638fbcec1db4b (diff)
downloadvdr-plugin-smarttvweb-b098218e1dc48b8e707f03c8fb495bb786ad1fba.tar.gz
vdr-plugin-smarttvweb-b098218e1dc48b8e707f03c8fb495bb786ad1fba.tar.bz2
Allow Real Questionmark in Path.
-rwxr-xr-xsmarttvfactory.h4
-rw-r--r--url.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/smarttvfactory.h b/smarttvfactory.h
index 280c4bd..625e511 100755
--- a/smarttvfactory.h
+++ b/smarttvfactory.h
@@ -47,8 +47,8 @@ class cStatus {
using namespace std;
-#define PLG_VERSION "1.0.0"
-#define SERVER "SmartTvWeb/1.0.0"
+#define PLG_VERSION "1.0.1"
+#define SERVER "SmartTvWeb/1.0.1"
class cLiveRelay;
struct sClientEntry {
diff --git a/url.c b/url.c
index c39acb4..6bd34b7 100644
--- a/url.c
+++ b/url.c
@@ -53,6 +53,7 @@ string cUrlEncode::doUrlSaveEncode(string in) {
break;
case '#':
// break;
+ /*
if (in.compare(idx, 3, "#3F") == 0) {
res += "%3F";
idx +=3;
@@ -68,6 +69,7 @@ string cUrlEncode::doUrlSaveEncode(string in) {
idx += 3;
continue;
}
+*/
res += "%23"; // just a '#' char
break;
default: