Skip to content

Commit

Permalink
Automator: remove trailing slash in url
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-keeper committed Sep 19, 2024
1 parent 3fa6c68 commit d24969d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions keepercommander/commands/automator.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,8 @@ def execute(self, params, **kwargs): # type: (KeeperParams, **any) -> any
if url:
if not url.startswith('http'):
url = 'https://' + url
if url.endswith('/'):
url = url.rstrip('/')
rq.url = url
skills = kwargs.get('skill')
if skills:
Expand Down

0 comments on commit d24969d

Please sign in to comment.