blob: 4f5fa81cb9dbbc8ad8e78c9648e91cc7957e4cb0 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../client";
export function hcallback(hcaptcharesponse: string) {
localStorage.setItem("hdid", client.hdid);
client.sender.sendServer(`2T#${hcaptcharesponse}#%`);
location.reload();
}
window.hcallback = hcallback;
|