From 9d3d9ba3567dc74192599731708efc1d785f5e4b Mon Sep 17 00:00:00 2001 From: Whiplash Date: Wed, 25 Dec 2019 20:12:23 +0100 Subject: [PATCH] [polpotv] url update --- channels/polpotv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/channels/polpotv.py b/channels/polpotv.py index f277f819..98ed41e0 100644 --- a/channels/polpotv.py +++ b/channels/polpotv.py @@ -20,7 +20,7 @@ list_quality = ['1080p','720p','480p','360p'] @support.menu def mainlist(item): menu = [ - ('Ultimi Film aggiunti', ['/api/movies?order[releaseDate]=desc&lastReleaseAt[null]=false', 'peliculas', '']), + ('Ultimi Film aggiunti', ['/api/movies', 'peliculas', '']), ('Generi', ['/api/genres', 'search_movie_by_genre', '']), ('Anni {film}', ['', 'search_movie_by_year', '']), ('Cerca Film... bold', ['', 'search', '']) @@ -32,7 +32,7 @@ def newest(categoria): item = Item() if categoria == 'peliculas': item.contentType = 'movie' - item.url = host + '/api/movies?order[releaseDate]=desc&lastReleaseAt[null]=false' + item.url = host + '/api/movies' return peliculas(item) def peliculas(item):