Merge pull request #12419 from druiz17/fix-edit-avatar-entities

Don't update avatar entities of the avatars ID is AVATAR_SELF_ID
This commit is contained in:
John Conklin II 2018-02-16 09:48:19 -08:00 committed by GitHub
commit 24a3eb6e80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -219,7 +219,7 @@ void Avatar::updateAvatarEntities() {
return;
}
if (getID() == QUuid()) {
if (getID() == QUuid() || getID() == AVATAR_SELF_ID) {
return; // wait until MyAvatar gets an ID before doing this.
}