Skip to content

Commit

Permalink
Merge pull request #863 from Rosi2143/fix_rtsps_address_string
Browse files Browse the repository at this point in the history
fix missing ':' before port number in rtsps adress
  • Loading branch information
fronzbot authored Jan 25, 2024
2 parents 5146b36 + ee59307 commit d2e2e93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blinkpy/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ async def get_liveview(self):
await api.wait_for_command(self.sync.blink, response)
server = response["server"]
server_split = server.split(":")
server_split[0] = "rtsps:"
link = "".join(server_split)
server_split[0] = "rtsps"
link = ":".join(server_split)
return link


Expand Down

0 comments on commit d2e2e93

Please sign in to comment.