hard reload

This commit is contained in:
Michael Kret 2024-10-26 08:41:29 +03:00
parent 7e0cd9d352
commit 70578e4b38
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ export class WaitingForms extends WaitingWebhooks {
res.send(` res.send(`
<script> <script>
setTimeout(function() { setTimeout(function() {
window.location.reload(); window.location.reload(true);
}, 1); }, 1);
</script> </script>
`); `);

View file

@ -760,7 +760,7 @@
clearInterval(interval); clearInterval(interval);
return; return;
} }
window.location.reload(); window.location.reload(true);
}, 2000); }, 2000);
} }
} }