From ee43b3f675db177ad329bf646ebec3c007a37ee0 Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Fri, 31 Mar 2017 18:10:16 +0200 Subject: [PATCH] Set feed item category to broadcast type --- TwitchRSS/twitchrss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitchRSS/twitchrss.py b/TwitchRSS/twitchrss.py index 4bcbc90..7c7a7f7 100644 --- a/TwitchRSS/twitchrss.py +++ b/TwitchRSS/twitchrss.py @@ -157,6 +157,7 @@ class RSSVoDServer(webapp2.RequestHandler): else: link = vod['url'] item["title"] = vod['title'] + item["category"] = vod['broadcast_type'] item["link"] = link item["description"] = "" % (link, vod['preview']['large']) if vod.get('description_html'):