VRFS-697 configure track bug - possible fix
This commit is contained in:
parent
5dd3e82ea5
commit
775577d4fa
|
|
@ -541,16 +541,8 @@
|
|||
// logger.debug("channel id=" + val.id + ", channel input=" + val.input + ", channel assignment=" + currAssignment +
|
||||
// ", channel name=" + val.name + ", channel type=" + val.device_type + ", chat=" + val.chat);
|
||||
|
||||
var os = context.jamClient.GetOSAsString();
|
||||
if (os === context.JK.OS.WIN32) {
|
||||
if (chat && ($.inArray(val.device_id, musicDevices) > -1 || context.jamClient.TrackIsMusicDeviceType(val.device_type))) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (chat && ($.inArray(val.device_id, musicDevices) > -1 || !context.jamClient.TrackIsMusicDeviceType(val.device_type))) {
|
||||
return;
|
||||
}
|
||||
if (chat && ($.inArray(val.device_id, musicDevices) > -1 || context.jamClient.TrackIsMusicDeviceType(val.device_type))) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!chat && $.inArray(val.device_id, musicDevices) === -1) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue