* VRFS-2225 - fix for profile whacking
This commit is contained in:
parent
63425fe1ff
commit
14043f164e
|
|
@ -61,7 +61,7 @@
|
|||
$root.find('.rescanning-notice').hide();
|
||||
|
||||
if(!canceled) {
|
||||
var result = context.jamClient.ReloadAudioSystem(false, true, false);
|
||||
var result = context.jamClient.ReloadAudioSystem(false, true, true);
|
||||
}
|
||||
|
||||
populateAccountAudio();
|
||||
|
|
@ -145,7 +145,7 @@
|
|||
|
||||
function handleLoopbackAudioProfile(audioProfileId) {
|
||||
|
||||
if(audioProfileId != context.jamClient.LastUsedProfileName()) {
|
||||
if(audioProfileId != context.jamClient.FTUEGetMusicProfileName()) {
|
||||
var result = context.jamClient.FTUELoadAudioConfiguration(audioProfileId);
|
||||
|
||||
if(!result) {
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
|
||||
function handleConfigureAudioProfile(audioProfileId) {
|
||||
|
||||
if(audioProfileId != context.jamClient.LastUsedProfileName()) {
|
||||
if(audioProfileId != context.jamClient.FTUEGetMusicProfileName()) {
|
||||
logger.debug("activating " + audioProfileId);
|
||||
var result = context.jamClient.FTUELoadAudioConfiguration(audioProfileId);
|
||||
|
||||
|
|
@ -186,7 +186,6 @@
|
|||
populateAccountAudio();
|
||||
}
|
||||
|
||||
|
||||
app.layout.showDialog('configure-tracks')
|
||||
.one(EVENTS.DIALOG_CLOSED, populateAccountAudio)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue