#115 Convert client_id to string because pgsql fail with type convertion string <> int

This commit is contained in:
Dezinger
2017-11-18 23:42:42 +03:00
parent 17c775d193
commit 6e80f0a62d

View File

@ -26,7 +26,7 @@ class SocialNetworkAccountQuery extends ActiveQuery
return $this->andWhere(
[
'provider' => $client->getId(),
'client_id' => $client->getUserAttributes()['id'],
'client_id' => (string)$client->getUserAttributes()['id'],
]
);
}