Fixed missing name update on client rename

This commit is contained in:
WolverinDEV 2020-05-18 17:22:09 +02:00
parent 1904d1056d
commit 1562e52b40

View file

@ -314,6 +314,9 @@ class ClientName extends ReactComponentBase<ClientNameProperties, ClientNameStat
if(typeof event.updated_properties.client_servergroups !== "undefined" || typeof event.updated_properties.client_channel_group_id !== "undefined") {
this.updateGroups();
}
if(typeof event.updated_properties.client_nickname !== "undefined") {
this.forceUpdate();
}
}
}