Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
38f8f7cb
Unverified
Commit
38f8f7cb
authored
5 years ago
by
Joas Schilling
Browse files
Options
Downloads
Patches
Plain Diff
Don't get the avatar when we don't operate anyway
Signed-off-by:
Joas Schilling
<
coding@schilljs.com
>
parent
ec4b1584
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/private/Avatar/UserAvatar.php
+0
-5
0 additions, 5 deletions
lib/private/Avatar/UserAvatar.php
lib/private/Server.php
+5
-0
5 additions, 0 deletions
lib/private/Server.php
with
5 additions
and
5 deletions
lib/private/Avatar/UserAvatar.php
+
0
−
5
View file @
38f8f7cb
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
lib/private/Server.php
+
5
−
0
View file @
38f8f7cb
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment