From 6e52e282a16d72fc2e3172a95f67c017663e84ad Mon Sep 17 00:00:00 2001 From: red binder Date: Tue, 23 Jun 2026 01:32:31 +0200 Subject: [PATCH] guess who hardcoded the pid to 0 on accident? yours truly! --- 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 c5a222d..1b83c09 100644 --- a/rnex-core/src/nex/friends_handler.rs +++ b/rnex-core/src/nex/friends_handler.rs @@ -372,13 +372,13 @@ impl AccountManagement for FriendsGuest { principal_name, key: vec![], email, - pid: 0, + pid, }; let nexkey = client .create_new_sequential_or_update_and_get_account(new_account) .await - .map_err(|_| ErrorCode::Core_Unknown)? + .map_err(|e| {ErrorCode::Core_Unknown})? .into_inner(); if nexkey.key.len() != 16 {