Simplified code example in data-cloud/local-web-services#bypass-the-certificate-security-check (#2253)

Co-authored-by: David Britch <davidbritch@users.noreply.github.com>
This commit is contained in:
Jerzy Kruszewski 2024-05-15 11:43:54 +02:00 коммит произвёл GitHub
Родитель 87a74500f8
Коммит 0dfeebf3de
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -190,9 +190,7 @@ public class HttpsClientHandlerService
#if IOS
public bool IsHttpsLocalhost(NSUrlSessionHandler sender, string url, Security.SecTrust trust)
{
if (url.StartsWith("https://localhost"))
return true;
return false;
return url.StartsWith("https://localhost");
}
#endif
}