fixup error

This commit is contained in:
oiov
2025-05-26 18:05:23 +08:00
parent c9cfdfc07a
commit 515e7d2719
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ export async function GET(req: Request) {
const stats = await getIpInfo(req);
await createScrapeMeta({
ip: stats.ip,
ip: stats.ip || "::1",
type: "markdown",
referer: stats.referer,
city: stats.city,
+1 -1
View File
@@ -87,7 +87,7 @@ export async function GET(req: Request) {
const stats = await getIpInfo(req);
await createScrapeMeta({
ip: stats.ip,
ip: stats.ip || "::1",
type: "meta-info",
referer: stats.referer,
city: stats.city,
+1 -1
View File
@@ -44,7 +44,7 @@ export async function GET(req: Request) {
const stats = await getIpInfo(req);
await createScrapeMeta({
ip: stats.ip,
ip: stats.ip || "::1",
type: "qrcode",
referer: stats.referer,
city: stats.city,
+1 -1
View File
@@ -72,7 +72,7 @@ export async function GET(req: Request) {
const stats = await getIpInfo(req);
await createScrapeMeta({
ip: stats.ip,
ip: stats.ip || "::1",
type: "screenshot",
referer: stats.referer,
city: stats.city,
+1 -1
View File
@@ -66,7 +66,7 @@ export async function GET(req: Request) {
const stats = await getIpInfo(req);
await createScrapeMeta({
ip: stats.ip,
ip: stats.ip || "::1",
type: "text",
referer: stats.referer,
city: stats.city,