Skip to content

Commit

Permalink
fix tv show logos
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed Jun 29, 2022
1 parent 27ef28a commit a97bfab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/1.bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.4
1.0.5
1 change: 1 addition & 0 deletions tmdbapis/api3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tmdbapis/tmdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit a97bfab

Please sign in to comment.