mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 06:03:54 +08:00
manager.py: fix UNREGISTERED_DONGLE_ID check (#21027)
This commit is contained in:
@@ -118,7 +118,7 @@ def manager_thread():
|
||||
params = Params()
|
||||
|
||||
ignore = []
|
||||
if params.get("DongleId") == UNREGISTERED_DONGLE_ID:
|
||||
if params.get("DongleId", encoding='utf8') == UNREGISTERED_DONGLE_ID:
|
||||
ignore += ["manage_athenad", "uploader"]
|
||||
if os.getenv("NOBOARD") is not None:
|
||||
ignore.append("pandad")
|
||||
|
||||
Reference in New Issue
Block a user