1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Stop using get() directly on Request

This commit is contained in:
Yassine Guedidi 2025-01-19 02:06:54 +01:00
parent 5a8b581adf
commit 83164d0706
6 changed files with 9 additions and 9 deletions

View file

@ -411,7 +411,7 @@ class ConfigController extends AbstractController
$isValid = $googleAuthenticator->checkCode(
$this->getUser(),
$request->get('_auth_code')
$request->request->get('_auth_code')
);
if (true === $isValid) {