aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/plugins/gomtv.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/livestreamer/plugins/gomtv.py')
-rw-r--r--src/livestreamer/plugins/gomtv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/livestreamer/plugins/gomtv.py b/src/livestreamer/plugins/gomtv.py
index 5a44227..2c04ad9 100644
--- a/src/livestreamer/plugins/gomtv.py
+++ b/src/livestreamer/plugins/gomtv.py
@@ -89,8 +89,8 @@ class GomTV(Plugin):
# The response for the GOX XML if an incorrect stream quality is chosen is 1002.
if res.text != "1002" and len(res.text) > 0:
streamurl = self._parse_gox_file(res.text)
- streams[quality] = HTTPStream(self.session, streamurl,
- headers=self.StreamHeaders)
+ streams[quality.lower()] = HTTPStream(self.session, streamurl,
+ headers=self.StreamHeaders)
return streams