mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
Fix lint
This commit is contained in:
parent
780f17f116
commit
9e2700b89d
108 changed files with 315 additions and 359 deletions
|
@ -14,7 +14,7 @@ export abstract class AbstractSimpleFileCache <T> {
|
|||
protected abstract loadRemoteFile (key: string): Promise<GetFilePathResult>
|
||||
|
||||
init (max: number, maxAge: number) {
|
||||
this.getFilePath = memoizee(this.getFilePathImpl, {
|
||||
this.getFilePath = memoizee(this.getFilePathImpl.bind(this), {
|
||||
maxAge,
|
||||
max,
|
||||
promise: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue