Fix back button to never go to a different website using history len check
This commit is contained in:
@@ -26,6 +26,11 @@ function main() {
|
||||
|
||||
ReactDOM.render(<Mastodon {...props} />, mountNode);
|
||||
perf.stop('main()');
|
||||
|
||||
// remember the initial URL
|
||||
if (window.history && typeof window._mastoInitialHistoryLen === 'undefined') {
|
||||
window._mastoInitialHistoryLen = window.history.length;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user