aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Avatar/UserAvatar.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-03-24 18:23:38 +0100
committerJoas Schilling <coding@schilljs.com>2020-03-24 18:23:38 +0100
commitf3a5bd6753f10dc511ee90a1f042477120e0da33 (patch)
tree76dc8046ceb90a584e88d6076fc1e24be0d17962 /lib/private/Avatar/UserAvatar.php
parent3e338c907533dd77599b576ecfadd44b3d1a9855 (diff)
downloadnextcloud-server-f3a5bd6753f10dc511ee90a1f042477120e0da33.tar.gz
nextcloud-server-f3a5bd6753f10dc511ee90a1f042477120e0da33.zip
Fix generated avatars and nophoto cache files
Since nextcloud/server#19493 newFile() by default does not write the file anymore. Setting an empty string as content will make it write the file immediate, without having to call putContent() afterwards. Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/Avatar/UserAvatar.php')
-rw-r--r--lib/private/Avatar/UserAvatar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Avatar/UserAvatar.php b/lib/private/Avatar/UserAvatar.php
index fb434fc6947..485e53c249d 100644
--- a/lib/private/Avatar/UserAvatar.php
+++ b/lib/private/Avatar/UserAvatar.php
@@ -252,7 +252,7 @@ class UserAvatar extends Avatar {
$avatar->putContent($data);
$ext = 'png';
- $this->folder->newFile('generated');
+ $this->folder->newFile('generated', '');
$this->config->setUserValue($this->user->getUID(), 'avatar', 'generated', 'true');
}