FIX: Routing to default homepage with query params was broken
This commit is contained in:
parent
5aee2673c7
commit
b9fc9dc9fc
|
@ -8,7 +8,12 @@ const BareRouter = Ember.Router.extend({
|
||||||
handleURL(url) {
|
handleURL(url) {
|
||||||
const params = url.split('?');
|
const params = url.split('?');
|
||||||
|
|
||||||
if (params[0] === "/") { url = defaultHomepage(); }
|
if (params[0] === "/") {
|
||||||
|
url = defaultHomepage();
|
||||||
|
if (params[1] && params[1].length) {
|
||||||
|
url = `${url}?${params[1]}`;
|
||||||
|
}
|
||||||
|
}
|
||||||
return this._super(url);
|
return this._super(url);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue