Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upCan't check for updates on startup & can't install mods #67
Comments
Closed
This was referenced May 2, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When starting the app I received a message about not being able to check for updates and when I tried to install mods I kept getting an exception about not being able to decrypt data. I downloaded the source code and ran it and discovered the issue. Seems to be a TLS version issue. According to my computer's registry, I only have the TLS 1.3 client (HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols).
I got everything working by doing either of the following two things:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12I figured I would create an issue in case anyone else had the same problem.