From 0a952c2121cec4e0432cbec6a60cbe1419385fab Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Thu, 20 Jun 2019 12:05:07 +0200 Subject: [PATCH] some small changes --- shared/html/index.php | 2 ++ shared/js/ui/channel.ts | 6 ++++-- shared/js/voice/RecorderProfile.ts | 7 +++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/shared/html/index.php b/shared/html/index.php index b0f7c348..b3ecc450 100644 --- a/shared/html/index.php +++ b/shared/html/index.php @@ -34,6 +34,8 @@ + + diff --git a/shared/js/ui/channel.ts b/shared/js/ui/channel.ts index 158a8d54..f2fd0602 100644 --- a/shared/js/ui/channel.ts +++ b/shared/js/ui/channel.ts @@ -599,8 +599,10 @@ class ChannelEntry { options = options.substr(0, options.indexOf("spacer")); console.log(tr("Channel options: '%o'"), options); - if(options.length == 0) options = "align-left"; - else if(options.length > 1) options = options[0]; + if(options.length == 0) + options = "l"; + else if(options.length > 1) + options = options[0]; switch (options) { case "r": diff --git a/shared/js/voice/RecorderProfile.ts b/shared/js/voice/RecorderProfile.ts index 866f2f49..0b67a9a0 100644 --- a/shared/js/voice/RecorderProfile.ts +++ b/shared/js/voice/RecorderProfile.ts @@ -169,8 +169,11 @@ class RecorderProfile { await filter.set_threshold(this.config.vad_threshold.threshold); await filter.set_margin_frames(10); /* 500ms */ - filter.set_attack_smooth(.25); - filter.set_release_smooth(.9); + /* legacy client support */ + if('set_attack_smooth' in filter) + filter.set_attack_smooth(.25); + if('set_release_smooth' in filter) + filter.set_release_smooth(.9); this.input.enable_filter(audio.recorder.filter.Type.THRESHOLD); } else if(this.config.vad_type === "push_to_talk") {