aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/middlewares
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-02-16 11:56:58 +0100
committerChocobozzz <me@florianbigard.com>2023-02-16 11:56:58 +0100
commite65ef81cf51746616182a822bd6933bf0d16717a (patch)
treeff9e715b50eb690b8fbb5263cf1371d9f8103ff1 /server/middlewares
parent5bfe684e76d32a7745671635f8a75f932bd522e4 (diff)
downloadPeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.tar.gz
PeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.tar.zst
PeerTube-e65ef81cf51746616182a822bd6933bf0d16717a.zip
Update server dependencies
Diffstat (limited to 'server/middlewares')
-rw-r--r--server/middlewares/cache/shared/api-cache.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/middlewares/cache/shared/api-cache.ts b/server/middlewares/cache/shared/api-cache.ts
index 9e15bf2d6..7c366db00 100644
--- a/server/middlewares/cache/shared/api-cache.ts
+++ b/server/middlewares/cache/shared/api-cache.ts
@@ -27,7 +27,7 @@ export class ApiCache {
27 private readonly options: APICacheOptions 27 private readonly options: APICacheOptions
28 private readonly timers: { [ id: string ]: NodeJS.Timeout } = {} 28 private readonly timers: { [ id: string ]: NodeJS.Timeout } = {}
29 29
30 private index: { all: string[] } = { all: [] } 30 private readonly index: { all: string[] } = { all: [] }
31 31
32 constructor (options: APICacheOptions) { 32 constructor (options: APICacheOptions) {
33 this.options = { 33 this.options = {