Merge pull request #78 from DiegoRBaquero/DiegoRBaquero-patch-1
STUN servers
This commit is contained in:
commit
1fac9d550e
1 changed files with 3 additions and 3 deletions
6
app.js
6
app.js
|
@ -1,13 +1,13 @@
|
||||||
/* global WebTorrent, angular, moment, prompt, CoinHive */
|
/* global WebTorrent, angular, moment, prompt */
|
||||||
|
|
||||||
const VERSION = '0.18.0'
|
const VERSION = '0.18.1'
|
||||||
|
|
||||||
const trackers = ['wss://tracker.btorrent.xyz', 'wss://tracker.openwebtorrent.com']
|
const trackers = ['wss://tracker.btorrent.xyz', 'wss://tracker.openwebtorrent.com']
|
||||||
|
|
||||||
const rtcConfig = {
|
const rtcConfig = {
|
||||||
'iceServers': [
|
'iceServers': [
|
||||||
{
|
{
|
||||||
'urls': 'stun:stun.l.google.com:19305'
|
'urls': ['stun:stun.l.google.com:19305', 'stun:stun1.l.google.com:19305']
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue