From 98ab5dc81048d47d08a231f17698128f959e59b2 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 25 Aug 2021 16:14:11 +0200 Subject: Remove useless async --- client/src/assets/player/webtorrent/peertube-chunk-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/src/assets/player/webtorrent/peertube-chunk-store.ts') diff --git a/client/src/assets/player/webtorrent/peertube-chunk-store.ts b/client/src/assets/player/webtorrent/peertube-chunk-store.ts index 93ca8e1d8..81378c277 100644 --- a/client/src/assets/player/webtorrent/peertube-chunk-store.ts +++ b/client/src/assets/player/webtorrent/peertube-chunk-store.ts @@ -184,7 +184,7 @@ export class PeertubeChunkStore extends EventEmitter { private runCleaner () { this.checkExpiration() - this.cleanerInterval = setInterval(async () => { + this.cleanerInterval = setInterval(() => { this.checkExpiration() }, PeertubeChunkStore.CLEANER_INTERVAL_MS) } -- cgit v1.2.3