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.
1 parent bf10b18 commit 56c68ddCopy full SHA for 56c68dd
src/Controllers/OAuthController.php
@@ -85,7 +85,7 @@ public function callBack(): RedirectResponse
85
if ($this->checkExistenceUser($find) === false) {
86
// Check config setting first to see if it can register automatically or not
87
if (config('ShieldOAuthConfig')->oauthConfigs[$oauthName]['allow_register'] === false) {
88
- return redirect()->to(config('Auth')->logoutRedirect())->with('error', lang('ShieldOAuthLang.Callback.account_not_found', [$userInfo->email])));
+ return redirect()->to(config('Auth')->logoutRedirect())->with('error', lang('ShieldOAuthLang.Callback.account_not_found', [$userInfo->email]));
89
}
90
91
helper('text');
0 commit comments