]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
iptv auto: don't escape arguments, fixes #3721
authorJaroslav Kysela <perex@perex.cz>
Thu, 14 Apr 2016 11:14:27 +0000 (13:14 +0200)
committerJaroslav Kysela <perex@perex.cz>
Thu, 14 Apr 2016 11:14:27 +0000 (13:14 +0200)
src/input/mpegts/iptv/iptv_auto.c

index 4e3d8c264a07f68d7f51f0b3544758082dc0b3a1..edca3342f57cd124fa6779d03817be3c25f276c7 100644 (file)
@@ -169,9 +169,9 @@ iptv_auto_network_process_m3u_item(iptv_network_t *in,
       TAILQ_FOREACH(ra1, &args, link) {
         if (!htsbuf_empty(&q))
           htsbuf_append(&q, "&", 1);
-        htsbuf_append_and_escape_url(&q, ra1->key);
+        htsbuf_append_str(&q, ra1->key);
         htsbuf_append(&q, "=", 1);
-        htsbuf_append_and_escape_url(&q, ra1->val);
+        htsbuf_append_str(&q, ra1->val);
       }
       free(u.query);
       u.query = htsbuf_to_string(&q);