Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/aurelia/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
dkent600 committed Jan 8, 2017
2 parents 3bd4030 + c3aa763 commit ab13214
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,9 @@ export class Router {
return this.parent.updateTitle();
}

this.currentInstruction._updateTitle();
if (this.currentInstruction) {
this.currentInstruction._updateTitle();
}
return undefined;
}

Expand Down

0 comments on commit ab13214

Please sign in to comment.