Skip to content

Commit

Permalink
fix missing ':' before port number in rtsps adress
Browse files Browse the repository at this point in the history
Signed-off-by: Rosi2143 <[email protected]>
  • Loading branch information
Rosi2143 committed Jan 14, 2024
1 parent 5146b36 commit ee59307
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 ee59307

Please sign in to comment.