Changed event method sub names

This commit is contained in:
2022-02-01 00:03:04 -06:00
parent 53ff1417af
commit b4564c2540
3 changed files with 22 additions and 13 deletions

View File

@@ -34,7 +34,7 @@ class IPCServerMixin:
if "FILE|" in msg:
file = msg.split("FILE|")[1].strip()
if file:
event_system.push_gui_event([None, "handle_file_from_ipc", file])
event_system.push_gui_event([None, "handle_file_from_ipc", (file,)])
conn.close()
break