diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2013-08-09 16:28:16 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2013-08-09 16:28:16 +0300 |
commit | 2d4d55cfedccfa80d283592af349e93d0968f58e (patch) | |
tree | 8e1680d9515c8ba3a2c063d15ab51f2f6380a013 /src/libwebvi/request.c | |
parent | 2957122a1745ede4a0f100b321cad67e7bbd2fd5 (diff) | |
download | vdr-plugin-webvideo-2d4d55cfedccfa80d283592af349e93d0968f58e.tar.gz vdr-plugin-webvideo-2d4d55cfedccfa80d283592af349e93d0968f58e.tar.bz2 |
Assume that incoming HTML is UTF-8 encoded until a proper fix is
implemented
Diffstat (limited to 'src/libwebvi/request.c')
-rw-r--r-- | src/libwebvi/request.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libwebvi/request.c b/src/libwebvi/request.c index fc2b635..baca467 100644 --- a/src/libwebvi/request.c +++ b/src/libwebvi/request.c @@ -133,6 +133,8 @@ PipeComponent *build_and_start_menu_pipe(const WebviRequest *self) { pipe_component_set_next(p2, p3); pipe_downloader_start(p1); + // TODO: the downloaded HTML should be converted into UTF-8 + return (PipeComponent *)p1; } |