mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-30 20:43:53 -06:00
Fix lint
This commit is contained in:
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
Block a user