diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-11-08 08:38:06 -0500 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-11-08 08:38:06 -0500 |
commit | 0aad787f4c1bafa3d8446767cc8c1678047be1a7 (patch) | |
tree | 6f996d9cbeea63727b47485bb605f4d6c32ddafd /editor | |
parent | 4e53dc3fa3d2d457e72fad1943ea09e06278ffcb (diff) | |
download | redot-engine-0aad787f4c1bafa3d8446767cc8c1678047be1a7.tar.gz |
Add support for redotengine.org template mirror automation
Diffstat (limited to 'editor')
-rw-r--r-- | editor/export/export_template_manager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/export/export_template_manager.cpp b/editor/export/export_template_manager.cpp index 63c5f5c21a..abaf3cd833 100644 --- a/editor/export/export_template_manager.cpp +++ b/editor/export/export_template_manager.cpp @@ -238,7 +238,7 @@ void ExportTemplateManager::_refresh_mirrors() { is_refreshing_mirrors = true; String current_version = VERSION_FULL_CONFIG; - const String mirrors_metadata_url = "https://redotengine.org/mirrorlist/" + current_version + ".json"; + const String mirrors_metadata_url = "https://redotengine.org/api/mirrorlists/" + current_version + ".json"; request_mirrors->request(mirrors_metadata_url); } |