We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60cb835 commit 0a7e464Copy full SHA for 0a7e464
source/add_install_dlg_derived.cpp
@@ -85,7 +85,7 @@ void AddNewInstallDlg::GetAllVersions(){
85
}
86
// installation URLs
87
{
88
- auto r = fetch("https://unity3d.com/get-unity/download/archive");
+ auto r = fetch("https://unity.com/releases/editor/archive");
89
90
// check if succeeded
91
if (r.code != 200){
@@ -95,7 +95,7 @@ void AddNewInstallDlg::GetAllVersions(){
95
// get all the Unity versions
96
// they are prefixed with unityhub:// links
97
98
- std::string_view match("unityhub://");
+ constexpr std::string_view match("unityhub://");
99
100
for(size_t i = 0; i < r.text.size(); i++){
101
std::string_view section(r.text.data() + i,match.size());
0 commit comments