Skip to content

Commit

Permalink
修复退出客户端后报错的 BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzaphkiel committed Jan 6, 2024
1 parent 881503e commit 3e22aec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lol/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def run(self):
isRunning = True
self.lolClientStarted.emit(pid)
else:
if isRunning and not isLolGameProcessExist():
if isRunning and not isLolGameProcessExist(self.tasklistPath):
isRunning = False
self.lolClientEnded.emit()

Expand Down

0 comments on commit 3e22aec

Please sign in to comment.