try next release, use media_id

This commit is contained in:
Ruud
2014-03-21 14:31:49 +01:00
parent 37bc54e01e
commit 27e4800ed2
2 changed files with 2 additions and 2 deletions
@@ -428,7 +428,7 @@ MA.Release = new Class({
Api.request('movie.searcher.try_next', {
'data': {
'id': self.movie.get('_id')
'media_id': self.movie.get('_id')
}
});
+1 -1
View File
@@ -38,7 +38,7 @@ class MovieSearcher(SearcherBase, MovieTypeBase):
addApiView('movie.searcher.try_next', self.tryNextReleaseView, docs = {
'desc': 'Marks the snatched results as ignored and try the next best release',
'params': {
'id': {'desc': 'The id of the movie'},
'media_id': {'desc': 'The id of the media'},
},
})