|
@@ -98,7 +98,11 @@ public class GameServiceImpl extends ServiceImpl<GameMapper, Game> implements IG
|
|
|
game.setParentId(param.getParentGameId());
|
|
|
}
|
|
|
super.saveOrUpdate(game);
|
|
|
- return gameAppletService.addOrUpdate(game, param.getGameAppletConfigDTO());
|
|
|
+ //添加游戏应用信息
|
|
|
+ if (param.getGameAppletConfigDTO() != null) {
|
|
|
+ gameAppletService.addOrUpdate(game, param.getGameAppletConfigDTO());
|
|
|
+ }
|
|
|
+ return Boolean.TRUE;
|
|
|
}
|
|
|
|
|
|
private String getGameTags(List<Long> tagIdList) {
|