mirror of
https://github.com/jellyfin/jellyfin-chromecast.git
synced 2024-12-04 04:01:51 +00:00
Merge pull request #723 from 3flex/patch-6
Remove unnecessary explicit any
This commit is contained in:
commit
e4ac97bf7e
@ -526,7 +526,7 @@ window.castReceiverContext.addCustomMessageListener(
|
||||
'urn:x-cast:com.connectsdk',
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
(evt: any) => {
|
||||
let data: any = evt.data; // eslint-disable-line @typescript-eslint/no-explicit-any
|
||||
let data = evt.data;
|
||||
|
||||
// Apparently chromium likes to pass it as json, not as object.
|
||||
// chrome on android works fine
|
||||
|
Loading…
Reference in New Issue
Block a user