mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-08-21 08:14:00 +08:00
manager.py: fix UNREGISTERED_DONGLE_ID check (#21027)
old-commit-hash: ba5d6bbd702e35afad028fadd392d7ed8a2a8dc2
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