Merge pull request #6326 from nextcloud/fix_4654_3375

Pass new value to triggerChange
This commit is contained in:
Roeland Jago Douma 2017-09-04 12:03:19 +02:00 committed by GitHub
commit c4f175d079
1 changed files with 4 additions and 3 deletions

View File

@ -135,8 +135,9 @@ class Avatar implements IAvatar {
}
$this->remove();
$this->folder->newFile('avatar.'.$type)->putContent($data);
$this->user->triggerChange('avatar');
$file = $this->folder->newFile('avatar.'.$type);
$file->putContent($data);
$this->user->triggerChange('avatar', $file);
}
/**
@ -155,7 +156,7 @@ class Avatar implements IAvatar {
$avatar->delete();
}
}
$this->user->triggerChange('avatar');
$this->user->triggerChange('avatar', '');
}
/**