From b8bd5d0f47e49094fa6840d6bc80fe3c0fa89ec8 Mon Sep 17 00:00:00 2001 From: Maple Nebel Date: Wed, 8 Jul 2026 00:56:05 +0200 Subject: [PATCH] try changing error code for get_basic_info --- rnex-core/src/nex/friends_handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rnex-core/src/nex/friends_handler.rs b/rnex-core/src/nex/friends_handler.rs index ed9b006..a3acb7c 100644 --- a/rnex-core/src/nex/friends_handler.rs +++ b/rnex-core/src/nex/friends_handler.rs @@ -1054,7 +1054,7 @@ impl FriendsWiiU for FriendsUser { .fetch_one(get_db()) .await else { - return Err(ErrorCode::FPD_InvalidPrincipalID); + return Err(ErrorCode::FPD_InvalidAccount); }; principal_infos.push(basic_principal_from_record!(user));