Reload page when back button in browser pressed, avoid reading burn
after read paste from cache
This commit is contained in:
parent
afcece17dd
commit
e298c3d10c
1 changed files with 4 additions and 0 deletions
|
@ -5386,6 +5386,10 @@ jQuery.PrivateBin = (function($, RawDeflate) {
|
|||
if (Model.hasDeleteToken()) {
|
||||
return;
|
||||
}
|
||||
// always reload on back button to invalidate cache(protect burn after read paste)
|
||||
window.addEventListener('popstate', () => {
|
||||
window.location.reload();
|
||||
});
|
||||
|
||||
// display an existing paste
|
||||
return me.showPaste();
|
||||
|
|
Loading…
Reference in a new issue