From 6aa743954274930c6cf52262ef5ee2138e63dd1b Mon Sep 17 00:00:00 2001 From: Eden Leung <31346973+edenleung@users.noreply.github.com> Date: Tue, 9 Jun 2020 12:47:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E7=AB=AF=E5=9F=9F=E5=90=8D=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Traits/Jwt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Traits/Jwt.php b/src/Traits/Jwt.php index 79ba637..1f59d3e 100644 --- a/src/Traits/Jwt.php +++ b/src/Traits/Jwt.php @@ -245,7 +245,7 @@ private function makeSignerKey() */ public function iss() { - $iss = $this->app->request->root(true); + $iss = $this->app->request->rootDomain(); return $this->iss ?: $iss; }