cleanup mpv socket at start
This commit is contained in:
parent
41bc93feb9
commit
2f9cea0825
1 changed files with 5 additions and 1 deletions
6
app.py
6
app.py
|
@ -31,7 +31,11 @@ def cleanup_unclean():
|
|||
pass
|
||||
|
||||
mpv_pidfile.unlink()
|
||||
pass
|
||||
|
||||
if mpv_socket.is_dir():
|
||||
mpv_socket.rmdir()
|
||||
elif mpv_socket.exists():
|
||||
mpv_socket.unlink()
|
||||
|
||||
|
||||
def shutdown(status: int = 0):
|
||||
|
|
Loading…
Add table
Reference in a new issue