Skip to content
Snippets Groups Projects
Unverified Commit 38f8f7cb authored by Joas Schilling's avatar Joas Schilling
Browse files

Don't get the avatar when we don't operate anyway

parent ec4b1584
No related branches found
No related tags found
No related merge requests found
...@@ -312,11 +312,6 @@ class UserAvatar extends Avatar { ...@@ -312,11 +312,6 @@ class UserAvatar extends Avatar {
* @throws \OCP\PreConditionNotMetException * @throws \OCP\PreConditionNotMetException
*/ */
public function userChanged($feature, $oldValue, $newValue) { public function userChanged($feature, $oldValue, $newValue) {
// We only change the avatar on display name changes
if ($feature !== 'displayName') {
return;
}
// If the avatar is not generated (so an uploaded image) we skip this // If the avatar is not generated (so an uploaded image) we skip this
if (!$this->folder->fileExists('generated')) { if (!$this->folder->fileExists('generated')) {
return; return;
......
...@@ -1257,6 +1257,11 @@ class Server extends ServerContainer implements IServerContainer { ...@@ -1257,6 +1257,11 @@ class Server extends ServerContainer implements IServerContainer {
$oldValue = $e->getArgument('oldValue'); $oldValue = $e->getArgument('oldValue');
$value = $e->getArgument('value'); $value = $e->getArgument('value');
// We only change the avatar on display name changes
if ($feature !== 'displayName') {
return;
}
try { try {
$avatar = $manager->getAvatar($user->getUID()); $avatar = $manager->getAvatar($user->getUID());
$avatar->userChanged($feature, $oldValue, $value); $avatar->userChanged($feature, $oldValue, $value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment