mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 09:59:01 +00:00
Merge pull request #914 from a-f-G-U-C/admin-set-team
set Team field via Admin plugin
This commit is contained in:
commit
334e14ea4d
@ -137,10 +137,15 @@ void AdminPlugin::handleSetOwner(const User &o)
|
|||||||
strcpy(owner.id, o.id);
|
strcpy(owner.id, o.id);
|
||||||
}
|
}
|
||||||
if (owner.is_licensed != o.is_licensed) {
|
if (owner.is_licensed != o.is_licensed) {
|
||||||
changed = true;
|
changed = 1;
|
||||||
owner.is_licensed = o.is_licensed;
|
owner.is_licensed = o.is_licensed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((!changed || o.team) && (owner.team != o.team)) {
|
||||||
|
changed = 1;
|
||||||
|
owner.team = o.team;
|
||||||
|
}
|
||||||
|
|
||||||
if (changed) // If nothing really changed, don't broadcast on the network or write to flash
|
if (changed) // If nothing really changed, don't broadcast on the network or write to flash
|
||||||
service.reloadOwner();
|
service.reloadOwner();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user