Files
2026-05-26 16:15:54 +08:00

8 lines
176 B
C#

public class CertHandler : UnityEngine.Networking.CertificateHandler
{
protected override bool ValidateCertificate(byte[] certificateData)
{
return true;
}
}