Fix cross-user Fenrir instance registry pruning

This commit is contained in:
Storm Dragon
2026-05-07 23:51:07 -04:00
parent 37e281a1f7
commit b38b0a2dab
2 changed files with 5 additions and 2 deletions
@@ -4,6 +4,7 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
import errno
import json
import os
import tempfile
@@ -46,7 +47,9 @@ def process_exists(pid):
try:
os.kill(pid, 0)
return True
except OSError:
except OSError as e:
if e.errno == errno.EPERM:
return True
return False
+1 -1
View File
@@ -5,4 +5,4 @@
# By Chrys, Storm Dragon, and contributors.
version = "2026.05.07"
code_name = "master"
code_name = "testing"