We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building the request to call Plex, the line req = Request('{}{}'.format(plex.url, movie.key)) isn't stripping the leading backslash from the movie.key params so we end up with something like 'http://192.168.1.100:32400//library/metadata/730' when it should look like 'http://192.168.1.100:32400/library/metadata/730'.
req = Request('{}{}'.format(plex.url, movie.key))
This causes Plex to return a 404 and the script to exit.
The text was updated successfully, but these errors were encountered:
development here has stalled check out the updated Plex Meta Manager.
Sorry, something went wrong.
No branches or pull requests
When building the request to call Plex, the line
req = Request('{}{}'.format(plex.url, movie.key))
isn't stripping the leading backslash from the movie.key params so we end up with something like 'http://192.168.1.100:32400//library/metadata/730' when it should look like 'http://192.168.1.100:32400/library/metadata/730'.This causes Plex to return a 404 and the script to exit.
The text was updated successfully, but these errors were encountered: