SEBWIN-801: Fixed bug with ease of access configuration verification.
This commit is contained in:
parent
c6a8996138
commit
e4a14a3902
1 changed files with 5 additions and 0 deletions
|
@ -123,6 +123,11 @@ namespace SafeExamBrowser.Runtime.Operations
|
||||||
success = true;
|
success = true;
|
||||||
logger.Info($"Ease of access configuration is compromised ('{value}'), but service will be active in the next session.");
|
logger.Info($"Ease of access configuration is compromised ('{value}'), but service will be active in the next session.");
|
||||||
}
|
}
|
||||||
|
else if (Context.Current?.Settings.Service.IgnoreService == false)
|
||||||
|
{
|
||||||
|
success = true;
|
||||||
|
logger.Info($"Ease of access configuration is set ('{value}'), but service was active in the current session.");
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
logger.Warn($"Ease of access configuration is compromised: '{value}'! Aborting session initialization...");
|
logger.Warn($"Ease of access configuration is compromised: '{value}'! Aborting session initialization...");
|
||||||
|
|
Loading…
Reference in a new issue