aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/system/settings.gd2
-rw-r--r--server/src/main.rs2
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,
}