remove session getFormattedId

This commit is contained in:
MaxKey
2023-09-26 15:01:28 +08:00
parent 87338c8970
commit c717ea7892
2 changed files with 1 additions and 7 deletions

View File

@@ -42,6 +42,6 @@ public class OnlineSessionEndpoint {
public String ticketValidate(
@RequestParam(value ="ticket",required = true) String ticket) {
Session session = sessionManager.get(ticket);
return session == null ? "" : session.getFormattedId();
return session == null ? "" : session.getId();
}
}