Fixes: 1) Resolve incorrect URL formatting in AMO CRM gateway by removing redundant "https://" prefix;
Extra: None;
This commit is contained in:
parent
447f70d17a
commit
eb69fd3328
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@ class AmoCRM:
|
|||
logger.warning("Multiple AMO CRM providers found")
|
||||
raise CRMException("Multiple AMO CRM providers found") from mre
|
||||
|
||||
self.base = f"https://{self.instance.integration_url}"
|
||||
self.base = f"{self.instance.integration_url}"
|
||||
|
||||
self.client_id = self.instance.authentication.get("client_id")
|
||||
self.client_secret = self.instance.authentication.get("client_secret")
|
||||
|
|
|
|||
Loading…
Reference in a new issue