diff --git a/src/app/modules/game/main/main.component.ts b/src/app/modules/game/main/main.component.ts index 2e77347..50659e4 100644 --- a/src/app/modules/game/main/main.component.ts +++ b/src/app/modules/game/main/main.component.ts @@ -18,19 +18,18 @@ export class GameMainComponent implements OnInit { ngOnInit(): void { this.__activatedRoute.queryParams.subscribe((params) => { - console.log(params); // { orderby: "price" } - const vendorKey = params['vendor_key']; - const gameKey = params['game_key']; - - let r = this.__gameService - .getGameUrl(vendorKey, gameKey) - .then((r) => { - console.log('success', r.getUrl()); - window.location.href = r.getUrl(); - }) - .catch((e) => { - console.log('fail', e); - }); + // console.log(params); // { orderby: "price" } + // const vendorKey = params['vendor_key']; + // const gameKey = params['game_key']; + // let r = this.__gameService + // .getGameUrl(vendorKey, gameKey) + // .then((r) => { + // console.log('success', r.getUrl()); + // window.location.href = r.getUrl(); + // }) + // .catch((e) => { + // console.log('fail', e); + // }); }); } /**