Delete payload.js

This commit is contained in:
ps3120
2025-05-30 15:03:46 +02:00
committed by GitHub
parent af6ce04ba3
commit cb7393d3d5
-10
View File
@@ -1,10 +0,0 @@
if (sessionStorage.getItem('jbsuccess')) {
sessionStorage.setItem('binloader', 1);
} else {
fetch('./payload.bin').then(res => {
res.arrayBuffer().then(arr => {
window.pld = new Uint32Array(arr);
sessionStorage.setItem('jbsuccess', 1);
})
})
}