Fixes broken requireDisplayName feature.
It was asking for new display name even if we have had one configured already.
This commit is contained in:
parent
cd4ebca730
commit
ea24c6a66a
|
@ -296,7 +296,7 @@ UI.start = function () {
|
|||
document.title = interfaceConfig.APP_NAME;
|
||||
|
||||
if(config.requireDisplayName) {
|
||||
if (APP.settings.getDisplayName()) {
|
||||
if (!APP.settings.getDisplayName()) {
|
||||
promptDisplayName();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue