|
|
@@ -472,7 +472,9 @@ public class ChatGptAccountServiceImpl implements ChatGptAccountService {
|
|
|
.orderBy(ChatgptCarInfoView::getTeamClearsIn).asc()
|
|
|
.orderBy(ChatgptCarInfoView::getClearsIn).asc().orderBy(ChatgptCarInfoView::getScore).asc().build());
|
|
|
|
|
|
- chatgptCarInfoViews.getDataList().forEach(this::buildChatgptCarInfoView);
|
|
|
+ if (chatgptCarInfoViews != null) {
|
|
|
+ chatgptCarInfoViews.getDataList().forEach(this::buildChatgptCarInfoView);
|
|
|
+ }
|
|
|
return chatgptCarInfoViews;
|
|
|
}
|
|
|
|