This commit is contained in:
Anonymous
2019-10-23 18:13:54 +08:00
parent 51cf3b1b76
commit 0b62ae8591
10 changed files with 100 additions and 51 deletions

View File

@ -20,7 +20,7 @@ class Server
if (empty($token)) {
abort(500, 'token is null');
}
if ($token !== config('v2panel.server_token')) {
if ($token !== config('v2board.server_token')) {
abort(500, 'token is error');
}
return $next($request);