Change handleSetOwner parameter to const reference and improve long name handling

This commit is contained in:
Ben Meadors
2026-06-11 14:24:12 -05:00
parent c2bcec93d0
commit ed52e3019d
2 changed files with 10 additions and 9 deletions

View File

@@ -58,7 +58,7 @@ class AdminModule : public ProtobufModule<meshtastic_AdminMessage>, public Obser
/**
* Setters
*/
void handleSetOwner(meshtastic_User &o);
void handleSetOwner(const meshtastic_User &o);
void handleSetChannel(const meshtastic_Channel &cc);
protected: