fix: corrected lowercasing on computercheck
name
This commit is contained in:
parent
efb3c8056a
commit
e4e0f7c16b
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
var cacheHostname = ((string) cacheKey.GetValue("DeviceName")).ToLower();
|
var cacheHostname = ((string) cacheKey.GetValue("DeviceName")).ToLower();
|
||||||
|
|
||||||
// windows timeline syncs with other hosts that a user has logged into: check hostname to only check this device
|
// windows timeline syncs with other hosts that a user has logged into: check hostname to only check this device
|
||||||
if (cacheHostname == currHostname)
|
if (currHostname.ToLower() == cacheHostname)
|
||||||
{
|
{
|
||||||
var biosInfo = "";
|
var biosInfo = "";
|
||||||
var manufacturer = (string) cacheKey.GetValue("DeviceMake");
|
var manufacturer = (string) cacheKey.GetValue("DeviceMake");
|
||||||
|
|
Loading…
Add table
Reference in a new issue