summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: