From 62dd3ceb64a2f75c4115b8444cfae92f3ae67b57 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Tue, 24 May 2016 21:42:58 -0700 Subject: [PATCH] Revert "Don't update the location during initial router navigation" This reverts commit d5066a9a0fa4d806c66bab5bbba2c478926c7f3a. --- modules/@angular/router-deprecated/src/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/router-deprecated/src/router.ts b/modules/@angular/router-deprecated/src/router.ts index 31a4a25af2..aef8628843 100644 --- a/modules/@angular/router-deprecated/src/router.ts +++ b/modules/@angular/router-deprecated/src/router.ts @@ -518,7 +518,7 @@ export class RootRouter extends Router { }); this.registry.configFromComponent(primaryComponent); - this.navigateByUrl(location.path(), true); + this.navigateByUrl(location.path()); } commit(instruction: Instruction, _skipLocationChange: boolean = false): Promise {