Skip to content

Commit

Permalink
fix: 修改错误的参数传递
Browse files Browse the repository at this point in the history
  • Loading branch information
boxshadow committed May 8, 2018
1 parent 34b1283 commit d94db26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/APIs/V2/TagUserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class TagUserController extends Controller
*/
public function index(Request $request, ResponseFactoryContract $response)
{
return $this->userTgas($response, $request->user());
return $this->userTgas($response, $request->user()->id);
}

/**
Expand Down

0 comments on commit d94db26

Please sign in to comment.