Skip to content

Commit

Permalink
Fix issue sending movie to radarr when approval is needed
Browse files Browse the repository at this point in the history
Version bump v1.21.2
  • Loading branch information
RickyGrassmuck committed Feb 24, 2017
1 parent 23dd14c commit 66e822c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion server/methods/admin/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Meteor.methods({
},

getVersion: function () {
return "1.20.1";
return "1.20.2";
},

checkForUpdate : function () {
Expand Down
4 changes: 2 additions & 2 deletions server/methods/requests/approveRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Meteor.methods({
var radarrQualityProfileId = settings.radarrQUALITYPROFILEID;
var RadarrRootFolderPath = settings.radarrROOTFOLDERPATH;
try {
if (Radarr.radarrMovieAdd(request.id, request.title, radarrQualityProfileId, RadarrRootFolderPath)) {
if (Radarr.radarrMovieAdd(request, settings)) {
Movies.update(request._id, {$set: {approval_status: 1, downloaded: false}});
return true;
} else {
Expand Down Expand Up @@ -202,4 +202,4 @@ Meteor.methods({
}
}
}
});
});
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.20.1
1.20.2

0 comments on commit 66e822c

Please sign in to comment.