diff --git a/.github/ISSUE_TEMPLATE/1.bug_report.yml b/.github/ISSUE_TEMPLATE/1.bug_report.yml index 28c60ed..f9d11f6 100644 --- a/.github/ISSUE_TEMPLATE/1.bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1.bug_report.yml @@ -9,12 +9,11 @@ body: attributes: value: > **THIS IS NOT THE PLACE TO ASK FOR SUPPORT!** - Please use [Ple Meta Manager Discord](https://discord.gg/NfH6mGFuAB) and post your question under the `plex-meta-manager` channel for support issues. + Please use [Ple Meta Manager Discord](https://discord.gg/NfH6mGFuAB) and post your question under the `software-and-hardware` channel for support issues. - type: input id: version attributes: label: Version Number - description: Can be found at the beginning of your log file placeholder: eg. 1.3.1 validations: required: true diff --git a/VERSION b/VERSION index a6a3a43..1464c52 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.4 \ No newline at end of file +1.0.5 \ No newline at end of file diff --git a/tmdbapis/api3.py b/tmdbapis/api3.py index ea086ab..bca5d83 100644 --- a/tmdbapis/api3.py +++ b/tmdbapis/api3.py @@ -61,6 +61,7 @@ def _request(self, request_type, path, json=None, **kwargs): url_params[key] = value request_url = f"{base_url}{path}" logger.debug(f"Request URL: {request_url}") + logger.debug(f"Request Params: {url_params}") if json is not None: logger.debug(f"Request JSON {json}") try: diff --git a/tmdbapis/tmdb.py b/tmdbapis/tmdb.py index b91123d..91bec07 100644 --- a/tmdbapis/tmdb.py +++ b/tmdbapis/tmdb.py @@ -81,7 +81,7 @@ def __init__(self, apikey: str, session_id: Optional[str] = None, v4_access_toke self._languages = [v for k, v in self._translations.items()] + [v.iso_639_1 for k, v in self._iso_639_1.items()] self._image_url = f"{self._config.secure_base_image_url}original" self.language = language - self._include_language = f"{self.language[:2]},null" if len(self.language) > 2 else "null" + self._include_language = None @property def _movie_genre_lookup(self):