add some more stuff
All checks were successful
Build and Test / splatoon-testfire (push) Successful in 4m2s
Build and Test / wii-sports-club (push) Successful in 4m11s
Build and Test / mario-tennis (push) Successful in 4m21s
Build and Test / splatoon (push) Successful in 4m21s
Build and Test / wii-u-chat (push) Successful in 4m25s
Build and Test / minecraft-wiiu (push) Successful in 4m26s
Build and Test / sonic-transformed (push) Successful in 4m36s
Build and Test / fast-racing-neo (push) Successful in 4m36s
Build and Test / puyopuyo (push) Successful in 4m41s
Build and Test / super-mario-maker (push) Successful in 4m50s
Build and Test / friends (push) Successful in 4m51s

This commit is contained in:
Maple Nebel 2026-07-08 00:46:18 +02:00
commit 290cd0b42f

View file

@ -1046,6 +1046,7 @@ impl FriendsWiiU for FriendsUser {
let mut principal_infos = Vec::with_capacity(pids.len());
for pid in pids {
println!("looking up pid: {}", pid);
let Ok(user) = query!(
"select * from nintendo_network_accounts where pid = $1",
pid
@ -1066,18 +1067,18 @@ impl FriendsWiiU for FriendsUser {
&self,
notifs: Vec<PersistentNotification>,
) -> Result<(), ErrorCode> {
Err(ErrorCode::Core_NotImplemented)
Ok(())
}
async fn check_setting_status(&self) -> Result<u8, ErrorCode> {
Err(ErrorCode::Core_NotImplemented)
Ok(0)
}
async fn get_request_block_settings(
&self,
unk: Vec<u32>,
) -> Result<Vec<PrincipalRequestBlockSetting>, ErrorCode> {
Err(ErrorCode::Core_NotImplemented)
Ok(vec![])
}
}