diff --git a/assets/scripts/vendor/ember.js b/assets/scripts/vendor/ember.js index 29fb72f0..f0fd6977 100644 --- a/assets/scripts/vendor/ember.js +++ b/assets/scripts/vendor/ember.js @@ -18498,7 +18498,7 @@ Ember.HistoryLocation = Ember.Object.extend({ setURL: function(path) { path = this.formatURL(path); - if (this.getState().path !== path) { + if (this.getState() && this.getState().path !== path) { popstateReady = true; this.pushState(path); }