Skip to content

Commit

Permalink
Search for movie when adding to Radarr list (#8)
Browse files Browse the repository at this point in the history
* Fix for #7
* Bump version to 1.1.8
  • Loading branch information
hackworth authored and josephschmitt committed Jun 29, 2017
1 parent 0a31f7e commit 2c9bc28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alexa-libby",
"version": "1.1.7",
"version": "1.1.8",
"description": "A skill to ask Alexa about your Movie and TV Show library queues.",
"main": "dist/index.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/api/radarr.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ export async function add(movie) {
titleSlug: movie.slug,
images: movie.images,
qualityProfileId: quality.id || 1,
rootFolderPath: rootFolderResp.path
rootFolderPath: rootFolderResp.path,
addOptions: {
searchForMovie: true
}
});
}

Expand Down

0 comments on commit 2c9bc28

Please sign in to comment.