diff options
| author | tpart <tpart120@proton.me> | 2025-11-07 22:29:18 +0100 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-11-07 22:29:18 +0100 |
| commit | 41fc3a278ffba8f192cf955bedadf77fac94ea69 (patch) | |
| tree | e48e2c25495bd2356cf08ed2ead7d3fa37581593 | |
| parent | 412ad47edea35289e89ec768bd0e70a08623c63a (diff) | |
| download | hurrycurry-41fc3a278ffba8f192cf955bedadf77fac94ea69.tar hurrycurry-41fc3a278ffba8f192cf955bedadf77fac94ea69.tar.bz2 hurrycurry-41fc3a278ffba8f192cf955bedadf77fac94ea69.tar.zst | |
Update registry URL
| -rw-r--r-- | client/system/settings.gd | 2 | ||||
| -rw-r--r-- | server/src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/system/settings.gd b/client/system/settings.gd index 4ab16fbf..23971647 100644 --- a/client/system/settings.gd +++ b/client/system/settings.gd @@ -77,7 +77,7 @@ static func get_root(): ]), SettingsCategory.new("online", [ ToggleSetting.new("use_registry", false), - TextSetting.new("registry_url", "https://hurrycurry-registry.metamuffin.org/"), + TextSetting.new("registry_url", "https://registry.hurrycurry.org/"), ToggleSetting.new("use_discover", true), PathSetting.new("discover_binary", "", FileDialog.FileMode.FILE_MODE_OPEN_FILE), ]) diff --git a/server/src/main.rs b/server/src/main.rs index 55085f40..51a7a69b 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -84,7 +84,7 @@ pub(crate) struct Args { register_disable_ip6: bool, /// Address of registry server to use when registering #[cfg(feature = "register")] - #[arg(long, default_value = "https://hurrycurry-registry.metamuffin.org")] + #[arg(long, default_value = "https://registry.hurrycurry.org")] registry_server: String, } |