mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Merge pull request #442 from Stremio/fix-error-checker-is-not-a-function-on-stream-components
fix error: "checker is not a function" in stream components
This commit is contained in:
commit
25c247bec2
1 changed files with 12 additions and 12 deletions
|
|
@ -123,48 +123,48 @@ Stream.propTypes = {
|
|||
fileName: PropTypes.string,
|
||||
streaming: PropTypes.string,
|
||||
openPlayer: PropTypes.shape({
|
||||
choose: {
|
||||
choose: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
vlc: {
|
||||
}),
|
||||
vlc: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
outplayer: {
|
||||
}),
|
||||
outplayer: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
infuse: {
|
||||
}),
|
||||
infuse: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
justplayer: {
|
||||
}),
|
||||
justplayer: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
mxplayer: {
|
||||
}),
|
||||
mxplayer: PropTypes.shape({
|
||||
ios: PropTypes.string,
|
||||
android: PropTypes.string,
|
||||
windows: PropTypes.string,
|
||||
macos: PropTypes.string,
|
||||
linux: PropTypes.string
|
||||
},
|
||||
}),
|
||||
})
|
||||
})
|
||||
}),
|
||||
|
|
|
|||
Loading…
Reference in a new issue