Skip to content

Commit

Permalink
merge master version 0.0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkeret committed Feb 27, 2015
1 parent 42919b5 commit 5c0d912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def movies(self, request):
json_query = xbmc.executeJSONRPC('%s "sort": {"order": "descending", "method": "dateadded"}, "filter": {"field": "playcount", "operator": "is", "value": "0"}}}' %json_string)
elif request == 'RecentMovie':
json_query = xbmc.executeJSONRPC('%s "sort": {"order": "descending", "method": "dateadded"}}}' %json_string)
elif request == 'RecentAiredMovie' and self.RECENTAIREDITEMS_UNPLAYED:
elif request == 'RecentAiredMovie' and RECENTAIREDITEMS_UNPLAYED:
json_query = xbmc.executeJSONRPC('%s "sort": {"order": "descending", "method": "year"}, "filter": {"field": "playcount", "operator": "is", "value": "0"}}}' %json_string)
elif request == 'RecentAiredMovie':
json_query = xbmc.executeJSONRPC('%s "sort": {"order": "descending", "method": "year"}}}' %json_string)
Expand Down

0 comments on commit 5c0d912

Please sign in to comment.