1
0
mirror of https://github.com/flarum/core.git synced 2025-10-19 10:46:06 +02:00

Fix errors in DeleteAvatarAction/Command

This commit is contained in:
Toby Zerner
2015-05-19 09:26:39 +09:30
parent 1ab1631849
commit 811df6c278
2 changed files with 10 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ class DeleteAvatarAction extends SerializeResourceAction
protected function data(JsonApiRequest $request, JsonApiResponse $response)
{
return $this->bus->dispatch(
new DeleteAvatarCommand($request->get('id'), $this->actor->getUser())
new DeleteAvatarCommand($request->get('id'), $request->actor->getUser())
);
}
}