fix: cast actor_id to pass as int to set_interact_as_actor() function

This commit is contained in:
Yassine Doghri 2021-06-11 15:34:11 +00:00
parent d772685405
commit 56a8e5d7dd
No known key found for this signature in database
GPG Key ID: 3E7F89498B960C9F
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ class AuthController extends MythAuthController
helper('auth');
set_interact_as_actor($this->request->getPost('actor_id'));
set_interact_as_actor((int) $this->request->getPost('actor_id'));
return redirect()->back();
}