Fix typing.
This commit is contained in:
parent
0edc81ec62
commit
1728e52e9f
@ -80,7 +80,7 @@ function register ({ registerHook, peertubeHelpers }: RegisterOptions): void {
|
|||||||
button.onclick = callback
|
button.onclick = callback
|
||||||
if (icon) {
|
if (icon) {
|
||||||
// FIXME: remove «as string» when peertube types will be available
|
// FIXME: remove «as string» when peertube types will be available
|
||||||
const iconUrl = (peertubeHelpers.getBaseStaticRoute() as string) + '/images/' + icon
|
const iconUrl = peertubeHelpers.getBaseStaticRoute() + '/images/' + icon
|
||||||
const iconEl = document.createElement('span')
|
const iconEl = document.createElement('span')
|
||||||
iconEl.classList.add('peertube-plugin-livechat-button-icon')
|
iconEl.classList.add('peertube-plugin-livechat-button-icon')
|
||||||
iconEl.setAttribute('style',
|
iconEl.setAttribute('style',
|
||||||
@ -198,6 +198,7 @@ function register ({ registerHook, peertubeHelpers }: RegisterOptions): void {
|
|||||||
container.setAttribute('peertube-plugin-livechat-state', 'initializing')
|
container.setAttribute('peertube-plugin-livechat-state', 'initializing')
|
||||||
videoWrapper.append(container)
|
videoWrapper.append(container)
|
||||||
|
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
||||||
peertubeHelpers.getSettings().then((s: any) => {
|
peertubeHelpers.getSettings().then((s: any) => {
|
||||||
settings = s
|
settings = s
|
||||||
const liveOn = !!settings['chat-all-lives']
|
const liveOn = !!settings['chat-all-lives']
|
||||||
|
Loading…
x
Reference in New Issue
Block a user