guess who hardcoded the pid to 0 on accident? yours truly!
Some checks failed
Build and Test / fast-racing-neo (push) Successful in 3m27s
Build and Test / minecraft-wiiu (push) Successful in 4m1s
Build and Test / splatoon-testfire (push) Successful in 4m1s
Build and Test / splatoon (push) Successful in 4m34s
Build and Test / wii-u-chat (push) Successful in 4m38s
Build and Test / puyopuyo (push) Successful in 4m43s
Build and Test / mario-tennis (push) Successful in 4m44s
Build and Test / super-mario-maker (push) Successful in 4m51s
Build and Test / friends (push) Successful in 5m3s
Build and Test / sonic-transformed (push) Has been cancelled
Build and Test / wii-sports-club (push) Has been cancelled

This commit is contained in:
red binder 2026-06-23 01:32:31 +02:00
commit 6e52e282a1

View file

@ -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 {