We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdf670e + 116435c commit 2819a77Copy full SHA for 2819a77
src/GraphQL/Mutations/BaseAuthResolver.php
@@ -42,7 +42,7 @@ public function makeRequest(array $credentials)
42
$response = app()->handle($request);
43
$decodedResponse = json_decode($response->getContent(), true);
44
if ($response->getStatusCode() === 400) {
45
- throw new AuthenticationException(_("Incorrect username and password"));
+ throw new AuthenticationException(_('Incorrect username and password'));
46
}
47
if ($response->getStatusCode() != 200) {
48
throw new AuthenticationException($decodedResponse['message']);
0 commit comments