fixed iOS video load bug.
This commit is contained in:
parent
afcd029e4d
commit
6057a73a08
@ -37,6 +37,7 @@ This app uses Web RTC to stream a desktop inside of a docker container. This is
|
|||||||
- Fixed h264 pipelines bugs (by @mbattista).
|
- Fixed h264 pipelines bugs (by @mbattista).
|
||||||
- Fixed sessions manager thread safety by adding mutexes (caused panic in rare edge cases).
|
- Fixed sessions manager thread safety by adding mutexes (caused panic in rare edge cases).
|
||||||
- Now when user gets kicked, he won't join as a ghost user again but will be logged out.
|
- Now when user gets kicked, he won't join as a ghost user again but will be logged out.
|
||||||
|
- **iOS compatibility!** Fixed really strange CSS bug, which prevented iOS from loading the video.
|
||||||
|
|
||||||
### Misc
|
### Misc
|
||||||
- Custom docker workflow.
|
- Custom docker workflow.
|
||||||
|
@ -12,6 +12,14 @@
|
|||||||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#19bd9c">
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#19bd9c">
|
||||||
<meta name="msapplication-TileColor" content="#19bd9c">
|
<meta name="msapplication-TileColor" content="#19bd9c">
|
||||||
<meta name="theme-color" content="#19bd9c">
|
<meta name="theme-color" content="#19bd9c">
|
||||||
|
<style>
|
||||||
|
/* weird iOS bug, if this is not set
|
||||||
|
right here, video just does not start */
|
||||||
|
.video-container {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<noscript>
|
<noscript>
|
||||||
|
Reference in New Issue
Block a user