We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The name of the user should not be updated if it didn't change.
GuestController::updateName is called for every message:
GuestController::updateName
spreed/lib/Controller/ChatController.php
Line 191 in 4c9d7e7
updateName
Updating the name causes unnecessary database updates and unnecessarily reloads of the participant list by all clients.
The text was updated successfully, but these errors were encountered:
nickvergessen
No branches or pull requests
Steps to reproduce
Expected behaviour
The name of the user should not be updated if it didn't change.
Actual behaviour
GuestController::updateName
is called for every message:spreed/lib/Controller/ChatController.php
Line 191 in 4c9d7e7
This should either only be done if the name has changed, or
updateName
should detect the same name internally and perform a no-op in such cases.Updating the name causes unnecessary database updates and unnecessarily reloads of the participant list by all clients.
The text was updated successfully, but these errors were encountered: