mirror of https://github.com/Chocobozzz/PeerTube
Fix lint
parent
8bf8e56e01
commit
1a578165f9
|
@ -42,12 +42,14 @@ class PeerTubeSocket {
|
|||
socket.on('subscribe', ({ videoId }) => {
|
||||
if (!isIdValid(videoId)) return
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-floating-promises */
|
||||
socket.join(videoId)
|
||||
})
|
||||
|
||||
socket.on('unsubscribe', ({ videoId }) => {
|
||||
if (!isIdValid(videoId)) return
|
||||
|
||||
/* eslint-disable @typescript-eslint/no-floating-promises */
|
||||
socket.leave(videoId)
|
||||
})
|
||||
})
|
||||
|
|
|
@ -38,7 +38,7 @@ export interface User {
|
|||
abusesAcceptedCount?: number
|
||||
abusesCreatedCount?: number
|
||||
|
||||
videoCommentsCount? : number
|
||||
videoCommentsCount?: number
|
||||
|
||||
theme: string
|
||||
|
||||
|
|
Loading…
Reference in New Issue