mirror of https://github.com/hykilpikonna/AquaDX
[maimai2] Fix play record saving when guest is involved
parent
b660e9e9f5
commit
330519504e
|
@ -70,6 +70,11 @@ public class UpsertUserAllHandler implements BaseHandler {
|
|||
long userId = upsertUserAll.getUserId();
|
||||
UserAll userAll = upsertUserAll.getUpsertUserAll();
|
||||
|
||||
// If user is guest, just return OK response.
|
||||
if ((userId & 281474976710657L) == 281474976710657L) {
|
||||
return "{\"returnCode\":1,\"apiName\":\"com.sega.maimai2servlet.api.UpsertUserAllApi\"}";
|
||||
}
|
||||
|
||||
// UserData
|
||||
UserDetail userData;
|
||||
UserDetail newUserData;
|
||||
|
|
Loading…
Reference in New Issue