auto_join_3.3
Roman Drozd 2020-05-20 16:56:53 +02:00
parent ddd8c36c67
commit 81d4b015bc
4 changed files with 15 additions and 17 deletions

View File

@ -1074,7 +1074,7 @@ export default class RoomClient
{
if (volume < this._hark.lastVolume)
{
volume = this._hark.lastVolume - Math.pow((volume - this._hark.lastVolume)/(100 + this._hark.lastVolume),4)*2;
volume = this._hark.lastVolume - Math.pow((volume - this._hark.lastVolume)/(100 + this._hark.lastVolume), 4)*2;
}
this._hark.lastVolume = volume;
store.dispatch(peerVolumeActions.setPeerVolume(this._peerId, volume));

View File

@ -1,5 +1,3 @@
class AudioAnalyzer extends EventEmitter
{