mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Fix lint
This commit is contained in:
parent
780f17f116
commit
9e2700b89d
108 changed files with 315 additions and 359 deletions
|
@ -189,9 +189,9 @@ export class ApiCache {
|
|||
const self = this
|
||||
|
||||
res.locals.apicache = {
|
||||
write: res.write,
|
||||
writeHead: res.writeHead,
|
||||
end: res.end,
|
||||
write: res.write.bind(res),
|
||||
writeHead: res.writeHead.bind(res),
|
||||
end: res.end.bind(res),
|
||||
cacheable: true,
|
||||
content: undefined,
|
||||
headers: undefined
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue