Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leng-yue committed Aug 17, 2021
1 parent 5da096e commit 0f99d30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "scrcpy-client"
version = "0.3.1"
version = "0.3.2"
description = "A client of scrcpy"
authors = ["lengyue <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion scrcpy/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def stop(self) -> None:
if self.__server_stream is not None:
self.__server_stream.close()
if self.control_socket is not None:
self.__server_stream.close()
self.control_socket.close()
if self.__video_socket is not None:
self.__video_socket.close()

Expand Down

0 comments on commit 0f99d30

Please sign in to comment.