Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/Leia' into Matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuehlma committed Feb 12, 2020
2 parents 80558e7 + 96edc73 commit 2bebe65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion pvr.zattoo/addon.xml.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="pvr.zattoo"
version="19.2.9"
version="19.2.10"
name="Zattoo PVR Client"
provider-name="trummerjo,rbuehlma">
<requires>
Expand All @@ -26,6 +26,8 @@
<disclaimer lang="en_US">The authors are in no way responsible for failed recordings, incorrect timers, wasted hours, or any other undesirable effects..</disclaimer>
<platform>@PLATFORM@</platform>
<news>
v19.2.10
- Fix login with credentials containing exclamation mark (!) in password
v19.2.9
- Add support for parental pin
- Use selective recall flag by programme
Expand Down Expand Up @@ -63,6 +65,8 @@ v19.0.1
- Load description from xmltv file
v19.0.0
- Update to PVR addon API v6.0.0
v18.1.13
- Fix login with credentials containing exclamation mark (!) in password
v18.1.12
- Add support for parental pin
- Use selective recall flag by programme
Expand Down
2 changes: 1 addition & 1 deletion src/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ std::string Utils::UrlEncode(const std::string &value)

for (char c : value) {
// Keep alphanumeric and other accepted characters intact
if (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~')
if (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~' || c == '!') // Exclamation mark should not be here but Zattoo does not correctly encode it
{
escaped << c;
continue;
Expand Down

0 comments on commit 2bebe65

Please sign in to comment.