SEBWIN-408: Made favicon loading asynchronous.

This commit is contained in:
Damian Büchel 2020-06-22 11:31:42 +02:00
parent bcb8abdeaa
commit eb8ac889a4

View file

@ -280,6 +280,8 @@ namespace SafeExamBrowser.Browser
}
private void DisplayHandler_FaviconChanged(string uri)
{
Task.Run(() =>
{
var request = new HttpRequestMessage(HttpMethod.Head, uri);
var response = httpClient.SendAsync(request).ContinueWith(task =>
@ -292,6 +294,7 @@ namespace SafeExamBrowser.Browser
window.UpdateIcon(Icon);
}
});
});
}
private void DisplayHandler_ProgressChanged(double value)