diff --git a/app/common/service/AuthService.php b/app/common/service/AuthService.php index 07ab03eb..19ad56d8 100644 --- a/app/common/service/AuthService.php +++ b/app/common/service/AuthService.php @@ -197,6 +197,7 @@ public function getAdminInfo(){ */ public function parseNodeStr($node) { + $node = explode('?', $node)[0]; $array = explode('/', $node); foreach ($array as $key => $val) { if ($key == 0) { @@ -212,4 +213,4 @@ public function parseNodeStr($node) return $node; } -} \ No newline at end of file +}