diff --git a/Classes/Services/OAuth2LoginService.php b/Classes/Services/OAuth2LoginService.php index afc8fab..5214c8f 100644 --- a/Classes/Services/OAuth2LoginService.php +++ b/Classes/Services/OAuth2LoginService.php @@ -324,7 +324,13 @@ private function findOrCreateUserByResourceOwner(ResourceOwnerInterface $user): ); foreach ($record as $key => $value) { - $qb->set($key, $value); + $type = \PDO::PARAM_STR; + + if ($key === 'uc') { + $type = \PDO::PARAM_LOB; + } + + $qb->set($key, $value, true, $type); } $qb->execute();