mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
lint
This commit is contained in:
@@ -18,7 +18,7 @@ type RateLimitInfo = {
|
|||||||
} | {
|
} | {
|
||||||
code: 'RATE_LIMIT_EXCEEDED',
|
code: 'RATE_LIMIT_EXCEEDED',
|
||||||
info: Limiter.LimiterInfo,
|
info: Limiter.LimiterInfo,
|
||||||
}
|
};
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class RateLimiterService {
|
export class RateLimiterService {
|
||||||
@@ -68,7 +68,6 @@ export class RateLimiterService {
|
|||||||
this.logger.debug(`${actor} ${limitation.key} min remaining: ${info.remaining}`);
|
this.logger.debug(`${actor} ${limitation.key} min remaining: ${info.remaining}`);
|
||||||
|
|
||||||
if (info.remaining === 0) {
|
if (info.remaining === 0) {
|
||||||
// eslint-disable-next-line no-throw-literal
|
|
||||||
return { code: 'BRIEF_REQUEST_INTERVAL', info };
|
return { code: 'BRIEF_REQUEST_INTERVAL', info };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -85,7 +84,6 @@ export class RateLimiterService {
|
|||||||
this.logger.debug(`${actor} ${limitation.key} max remaining: ${info.remaining}`);
|
this.logger.debug(`${actor} ${limitation.key} max remaining: ${info.remaining}`);
|
||||||
|
|
||||||
if (info.remaining === 0) {
|
if (info.remaining === 0) {
|
||||||
// eslint-disable-next-line no-throw-literal
|
|
||||||
return { code: 'RATE_LIMIT_EXCEEDED', info };
|
return { code: 'RATE_LIMIT_EXCEEDED', info };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user