Merge pull request #2224 from mempool/simon/redirect-with-path

Redirect with path
This commit is contained in:
wiz 2022-07-31 22:01:35 +00:00 committed by GitHub
commit 573168f647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ export class EnterpriseService {
},
(error) => {
if (error.status === 404) {
window.location.href = 'https://mempool.space';
window.location.href = 'https://mempool.space' + window.location.pathname;
}
});
}