Skip to content

Commit

Permalink
fix top plays not working
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgalbu committed Dec 29, 2015
1 parent e51a187 commit 37991e6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion videos.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,13 @@ def videoMenu():
def videoListMenu():
date = vars.params.get("date");
video_tag = vars.params.get("video_tag")
video_query = urllib.unquote_plus(vars.params.get("video_query"))
video_query = vars.params.get("video_query")
page = int(vars.params.get("page", 0))
per_page = 20

if video_query:
video_query = urllib.unquote_plus(video_query)

log("videoListMenu: date requested is %s, tag is %s, query is %s, page is %d" % (date, video_tag, video_query, page), xbmc.LOGDEBUG)

if date:
Expand Down

0 comments on commit 37991e6

Please sign in to comment.