* revert latest change regarding configuration of tracks
This commit is contained in:
parent
decd478388
commit
da7a28a81e
|
|
@ -541,7 +541,14 @@
|
|||
// 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);
|
||||
|
||||
if (chat && ($.inArray(val.device_id, musicDevices) > -1 || context.jamClient.TrackIsMusicDeviceType(val.device_type))) {
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue