Pass new value to triggerChange

it is not used. but pass in the empty string (on delete) and the new
file (on create)

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-08-31 21:59:27 +02:00
parent 84ea66dca8
commit ffe1429c4f
No known key found for this signature in database
GPG Key ID: F941078878347C0C
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', '');
}
/**