rephrase old rejection logs

This commit is contained in:
mini-bomba 2025-04-25 21:41:07 +02:00
parent 4db4e9458e
commit f44d3cd92c
No known key found for this signature in database
GPG key ID: 30F8B138B4794886
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ export async function postBranding(req: Request, res: Response) {
},
endpoint: "dearrow-postBranding",
})) {
Logger.warn(`Rejecting submission based on invalid data: ${hashedUserID} ${videoID} ${videoDuration} ${userAgent} ${req.headers["user-agent"]} ${title.title} ${thumbnail.timestamp}`);
Logger.warn(`Dearrow submission rejected by request validator: ${hashedUserID} ${videoID} ${videoDuration} ${userAgent} ${req.headers["user-agent"]} ${title.title} ${thumbnail.timestamp}`);
res.status(200).send("OK");
return;
}

View file

@ -520,7 +520,7 @@ export async function postSkipSegments(req: Request, res: Response): Promise<Res
segments,
endpoint: "sponsorblock-postSkipSegments"
})) {
Logger.warn(`Rejecting submission based on invalid data: ${userID} ${videoID} ${videoDurationParam} ${userAgent} ${req.headers["user-agent"]}`);
Logger.warn(`Sponsorblock submission rejected by request validator: ${userID} ${videoID} ${videoDurationParam} ${userAgent} ${req.headers["user-agent"]}`);
return res.status(200).send("OK");
}