enhance(server): モデレーターであってもレートリミットを有効に
This commit is contained in:
parent
f1e6fa8ee2
commit
e4dc25dd5c
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ export default async (endpoint: string, user: CacheableLocalUser | null | undefi
|
|||
throw new ApiError(accessDenied);
|
||||
}
|
||||
|
||||
if (ep.meta.limit && !isModerator) {
|
||||
if (ep.meta.limit) {
|
||||
// koa will automatically load the `X-Forwarded-For` header if `proxy: true` is configured in the app.
|
||||
let limitActor: string;
|
||||
if (user) {
|
||||
|
|
Loading…
Reference in a new issue