more debugging
Some checks failed
Build and Test / super-mario-maker (push) Failing after 2m52s
Build and Test / friends (push) Successful in 3m3s
Build and Test / splatoon (push) Successful in 3m4s
Build and Test / sonic-transformed (push) Successful in 3m19s
Build and Test / mario-tennis (push) Successful in 3m19s
Build and Test / splatoon-testfire (push) Successful in 3m25s
Build and Test / wii-u-chat (push) Successful in 3m24s
Build and Test / fast-racing-neo (push) Successful in 3m25s
Build and Test / minecraft-wiiu (push) Successful in 3m25s
Build and Test / puyopuyo (push) Successful in 3m25s
Build and Test / wii-sports-club (push) Successful in 3m29s

This commit is contained in:
red binder 2026-06-18 13:31:28 +02:00
commit d5aac674ca

View file

@ -1242,9 +1242,15 @@ impl DataStore for User {
for (i, target) in targets.into_iter().enumerate() {
let param = &params[i];
log::info!("Data ID: {:?}", target.dataid);
log::info!("Access Password: {:?}", param.access_password);
let object_info = get_object_info_by_data_id(target.dataid, param.access_password).await?;
log::info!("object info get complete");
verify_object_permission(object_info.owner, self.pid, &object_info.permission).await?;
log::info!("object permission complete");
let rating = rate_object(target.dataid, target.slot, param.rating_value, param.access_password).await?;
log::info!("rating complete");
if fetch_ratings {
ratings.push(rating)