From 54d0339f48ad03c3635aa3a0c1b607ac0fd89314 Mon Sep 17 00:00:00 2001 From: red binder Date: Tue, 23 Jun 2026 12:14:03 +0200 Subject: [PATCH] stub more stuff the 3DS requests --- rnex-core/src/nex/friends_handler.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rnex-core/src/nex/friends_handler.rs b/rnex-core/src/nex/friends_handler.rs index 94c9bda..3979d2c 100644 --- a/rnex-core/src/nex/friends_handler.rs +++ b/rnex-core/src/nex/friends_handler.rs @@ -128,7 +128,7 @@ impl FriendsManager { // ALL of this is stubbed impl Friends3DS for FriendsUser { async fn update_profile(&self, profile: MyProfile) -> Result<(), ErrorCode> { - Err(ErrorCode::Core_NotImplemented) + Ok(()) } async fn update_mii(&self, profile: Mii) -> Result<(), ErrorCode> { @@ -140,7 +140,7 @@ impl Friends3DS for FriendsUser { } async fn update_played_games(&self, profile: Vec) -> Result<(), ErrorCode> { - Err(ErrorCode::Core_NotImplemented) + Ok(()) } async fn update_preference(&self, show_online_status: bool, show_current_title: bool, block_friend_requests: bool) -> Result<(), ErrorCode> {