mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-22 12:13:48 +01:00
fix #10483 (2)
This commit is contained in:
parent
7b4de4125f
commit
26a49cfa07
@ -18,7 +18,7 @@ function getUserToken(ctx: Koa.BaseContext): string | null {
|
||||
|
||||
function compareOrigin(ctx: Koa.BaseContext): boolean {
|
||||
function normalizeUrl(url?: string): string {
|
||||
return slice( url.length - 1) : url) : "";
|
||||
return url ? (url.endsWith("/") ? url.slice(0, url.length - 1) : url) : "";
|
||||
}
|
||||
|
||||
const referer = ctx.headers["referer"];
|
||||
|
Loading…
Reference in New Issue
Block a user