소스 검색

认证后跳转判断

shimingxy 8 달 전
부모
커밋
2a6eec17f8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      maxkey-web-frontend/maxkey-web-app/src/app/service/authn.service.ts

+ 2 - 2
maxkey-web-frontend/maxkey-web-app/src/app/service/authn.service.ts

@@ -176,9 +176,9 @@ export class AuthnService {
       if (this.redirect_uri != '') {
         console.log(`redirect_uri ${this.redirect_uri}`);
         location.href = this.redirect_uri;
+      } else {
+        this.router.navigateByUrl(url);
       }
-
-      this.router.navigateByUrl(url);
     });
   }
 }