coyotte508 HF staff commited on
Commit
ae53db5
·
1 Parent(s): c24174e

fixup! ✨ Tada

Browse files
Files changed (1) hide show
  1. server.ts +2 -1
server.ts CHANGED
@@ -4,7 +4,8 @@ const app = new Koa();
4
 
5
  app.use((ctx) => {
6
  ctx.body = {
7
- url: ctx.request.url,
 
8
  };
9
  });
10
 
 
4
 
5
  app.use((ctx) => {
6
  ctx.body = {
7
+ fullUrl: ctx.request.url,
8
+ query: ctx.request.query,
9
  };
10
  });
11