Fix current bandwidth shown in connection info
This commit is contained in:
parent
220b373154
commit
40e084559f
|
@ -181,6 +181,11 @@ class WorkerBasedMumbleClient extends EventEmitter {
|
||||||
}
|
}
|
||||||
defineDummyMethod('getMaxBitrate')
|
defineDummyMethod('getMaxBitrate')
|
||||||
defineDummyMethod('getActualBitrate')
|
defineDummyMethod('getActualBitrate')
|
||||||
|
let _setAudioQuality = this.setAudioQuality
|
||||||
|
this.setAudioQuality = function () {
|
||||||
|
this._dummyClient.setAudioQuality.apply(this._dummyClient, arguments)
|
||||||
|
_setAudioQuality.apply(this, arguments)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
_user (id) {
|
_user (id) {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mumble-web",
|
"name": "mumble-web",
|
||||||
"version": "0.4.0",
|
"version": "0.4.1",
|
||||||
"description": "An HTML5 Mumble client.",
|
"description": "An HTML5 Mumble client.",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "webpack",
|
"build": "webpack",
|
||||||
|
|
Loading…
Reference in a new issue