Skip to content

Commit

Permalink
fix: 修复脑残
Browse files Browse the repository at this point in the history
  • Loading branch information
SALTWOOD committed Oct 21, 2024
1 parent 2a70818 commit f9fe69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ export class Server {
totalFiles: this.files.length,
totalSize: this.files.reduce((acc, f) => acc + f.size, 0),
startTime: this.startAt.getTime(),
rejectedRequests: RateLimiter.rejectedRequest.getLast30DaysHourlyStats().at(0)?.map(hour => hour.hits) || [];
rejectedRequests: RateLimiter.rejectedRequest.getLast30DaysHourlyStats().at(0)?.map(hour => hour.hits) || []
});
});
this.app.get('/93AtHome/clusterStatistics', (req: Request, res: Response) => {
Expand Down

0 comments on commit f9fe69a

Please sign in to comment.