We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
submitFlag() { const { flag, token } = this.$data; const info = this.info; const local = { owner: "user", repository: "repo" }; const upstream = { owner: config.owner, repository: config.submissionsRepo }; this.$worker .run( async (flag, info, token, local, upstream) => { const NIZKCTF = require("../services/nizkctf"); const nizkctf = new NIZKCTF(token, local, upstream); return await nizkctf.submitFlag(flag, info); }, [flag, info, token, local, upstream] ) .then(r => console.log(r)) .catch(r => console.log("Error", r)); }
The text was updated successfully, but these errors were encountered:
Stumbled into exact same issue. The code was fine and it worked first, but then it suddenly stopped for some reason
Sorry, something went wrong.
me too. Is it settled now?
No branches or pull requests
The text was updated successfully, but these errors were encountered: