From 0098bee3e0d71cf52d58bbc7e7eb633be3d69c9d Mon Sep 17 00:00:00 2001 From: DecDuck Date: Wed, 21 Jan 2026 16:52:49 +1100 Subject: [PATCH] feat: use new depot endpoints in game specialisation --- src/remote.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/remote.rs b/src/remote.rs index 61838ba..7d97e15 100644 --- a/src/remote.rs +++ b/src/remote.rs @@ -63,7 +63,7 @@ pub async fn fetch_version_data( version_id: String, ) -> Result { let version_data_response = CLIENT - .get(REMOTE_URL.join("/api/v1/admin/depot/manifest")?) + .get(REMOTE_URL.join("/api/v1/admin/depot/torrential/manifest")?) .query(&VersionQuery { game: game_id, version: version_id, @@ -110,7 +110,7 @@ pub async fn fetch_instance_games( init_data: &AppInitData, ) -> Result, ErrorOption> { let context_response = CLIENT - .get(REMOTE_URL.join("/api/v1/admin/depot/versions")?) + .get(REMOTE_URL.join("/api/v1/admin/depot/torrential/versions")?) .header("Authorization", format!("Bearer {}", init_data.key)) .send() .await?;