debugging
This commit is contained in:
parent
d735a0353c
commit
0509bc2102
1 changed files with 8 additions and 1 deletions
9
index.js
9
index.js
|
@ -44,6 +44,7 @@ async function getapiurls(str){
|
||||||
async function inviteres(req,res){
|
async function inviteres(req,res){
|
||||||
//console.log(req.rawHeaders);
|
//console.log(req.rawHeaders);
|
||||||
try{
|
try{
|
||||||
|
|
||||||
let embed=isembed(req.get("User-Agent"));
|
let embed=isembed(req.get("User-Agent"));
|
||||||
if(!embed){return false};
|
if(!embed){return false};
|
||||||
const code=req.path.split("/")[2];
|
const code=req.path.split("/")[2];
|
||||||
|
@ -89,9 +90,15 @@ async function inviteres(req,res){
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
const agents=new Set()
|
||||||
app.use('/', async (req, res) => {
|
app.use('/', async (req, res) => {
|
||||||
|
agents.add(req.get("User-Agent"))
|
||||||
if(debugging&&req.path.startsWith("/service.js")){
|
if(debugging&&req.path.startsWith("/service.js")){
|
||||||
res.send("console.log(\"Hi :3\");");
|
let build=""
|
||||||
|
for(const thing of agents){
|
||||||
|
build+=thing+"\n";
|
||||||
|
}
|
||||||
|
res.send(build);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(req.path.startsWith("/invite/")){
|
if(req.path.startsWith("/invite/")){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue