Merge pull request #1431 from quizzmaster/fix_1425
Use profilename of currently active profile. Fixes #1425.
This commit is contained in:
commit
a3295fed5d
|
@ -480,7 +480,7 @@ public class WizardDialog extends DialogFragment implements OnClickListener, Com
|
||||||
Profile specificProfile;
|
Profile specificProfile;
|
||||||
if (selectedAlternativeProfile.equals(MainApp.gs(R.string.active))) {
|
if (selectedAlternativeProfile.equals(MainApp.gs(R.string.active))) {
|
||||||
specificProfile = ProfileFunctions.getInstance().getProfile();
|
specificProfile = ProfileFunctions.getInstance().getProfile();
|
||||||
selectedAlternativeProfile = MainApp.getConfigBuilder().getActiveProfileInterface().getProfileName();
|
selectedAlternativeProfile = ProfileFunctions.getInstance().getProfileName();
|
||||||
} else
|
} else
|
||||||
specificProfile = profileStore.getSpecificProfile(selectedAlternativeProfile);
|
specificProfile = profileStore.getSpecificProfile(selectedAlternativeProfile);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue