Merge pull request #15127 from vector-im/t3chguy/fix/3543
Fix onNewScreen to use replace when going from roomId->roomAliaspull/15153/head
commit
a700502086
|
@ -71,11 +71,16 @@ function onHashChange(ev: HashChangeEvent) {
|
||||||
|
|
||||||
// This will be called whenever the SDK changes screens,
|
// This will be called whenever the SDK changes screens,
|
||||||
// so a web page can update the URL bar appropriately.
|
// so a web page can update the URL bar appropriately.
|
||||||
function onNewScreen(screen: string) {
|
function onNewScreen(screen: string, replaceLast = false) {
|
||||||
console.log("newscreen " + screen);
|
console.log("newscreen " + screen);
|
||||||
const hash = '#/' + screen;
|
const hash = '#/' + screen;
|
||||||
lastLocationHashSet = hash;
|
lastLocationHashSet = hash;
|
||||||
window.location.hash = hash;
|
|
||||||
|
if (replaceLast) {
|
||||||
|
window.location.replace(hash);
|
||||||
|
} else {
|
||||||
|
window.location.assign(hash);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// We use this to work out what URL the SDK should
|
// We use this to work out what URL the SDK should
|
||||||
|
|
Loading…
Reference in New Issue