cleanup mpv socket at start

This commit is contained in:
deneb 2025-03-03 17:30:30 +01:00
parent 41bc93feb9
commit 2f9cea0825

6
app.py
View file

@ -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):