mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-22 20:43:07 +00:00
hide notifiarr apikey
This commit is contained in:
parent
d8d20b07a5
commit
cc8f925afc
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ class NotifiarrBase:
|
|||
def _request(self, path, json=None, params=None):
|
||||
url = f"{dev_url if self.develop else base_url}" + \
|
||||
("notification/test" if self.test else f"{path}{self.apikey}")
|
||||
logger.debug(url)
|
||||
logger.debug(url.replace(self.apikey, "APIKEY"))
|
||||
response = self.config.get(url, json=json, params={"event": "pmm"} if self.test else params)
|
||||
response_json = response.json()
|
||||
if self.develop or self.test:
|
||||
|
|
Loading…
Reference in a new issue