Fix widgets resetting when going to the top-left

Remove the hash from the parentUrl because this change when we
change rooms.
pull/21833/head
David Baker 2018-07-23 13:50:16 +01:00
parent fc29e89f63
commit 00f78822c5
1 changed files with 3 additions and 2 deletions

View File

@ -117,8 +117,9 @@ export default class AppTile extends React.Component {
const params = qs.parse(u.query); const params = qs.parse(u.query);
// Append widget ID to query parameters // Append widget ID to query parameters
params.widgetId = this.props.id; params.widgetId = this.props.id;
// Append current / parent URL // Append current / parent URL, minus the hash because that will change when
params.parentUrl = window.location.href; // we view a different room (ie. may change for persistent widgets)
params.parentUrl = window.location.href.split('#', 2)[0];
u.search = undefined; u.search = undefined;
u.query = params; u.query = params;