Added connection faq docs and ignore for WebRTC support error
This commit is contained in:
parent
82e8eb014e
commit
fcb10662c6
7
src/docs/faq/connection.md
Normal file
7
src/docs/faq/connection.md
Normal file
@ -0,0 +1,7 @@
|
||||
## Connection
|
||||
|
||||
---
|
||||
|
||||
### WebRTC not supported.
|
||||
|
||||
If you see a WebRTC not supported message ensure you are using a browser that supports [WebRTC](https://caniuse.com/rtcpeerconnection) and also ensure that you don't have an extension that is blocking WebRTC connections. Some VPN extensions can cause this.
|
@ -25,6 +25,7 @@ if (process.env.REACT_APP_LOGGING === "true") {
|
||||
"QuotaExceededError",
|
||||
"XDR encoding failure",
|
||||
"Assertion failed: Input argument is not an HTMLInputElement",
|
||||
"ERR_WEBRTC_SUPPORT",
|
||||
],
|
||||
});
|
||||
}
|
||||
|
@ -11,6 +11,7 @@ const database = raw("../docs/faq/database.md");
|
||||
const maps = raw("../docs/faq/maps.md");
|
||||
const audioSharing = raw("../docs/faq/audio-sharing.md");
|
||||
const general = raw("../docs/faq/general.md");
|
||||
const connection = raw("../docs/faq/connection.md");
|
||||
|
||||
function FAQ() {
|
||||
return (
|
||||
@ -45,6 +46,9 @@ function FAQ() {
|
||||
<Box my={1} id="database">
|
||||
<Markdown source={database} assets={assets} />
|
||||
</Box>
|
||||
<Box my={1} id="connection">
|
||||
<Markdown source={connection} assets={assets} />
|
||||
</Box>
|
||||
</Flex>
|
||||
<Footer />
|
||||
</Flex>
|
||||
|
Loading…
x
Reference in New Issue
Block a user