修复关注列表接口bug

This commit is contained in:
linfeng 2023-04-24 09:56:41 +08:00
parent 4092258e69
commit 7e5a7eddd4

View File

@ -69,7 +69,7 @@ public class AppPostController {
public R followUserPost(@RequestParam Integer page, @LoginUser AppUserEntity user){
AppPageUtils pages =postService.followUserPost(page,user);
if(ObjectUtil.isNull(page)){
if(ObjectUtil.isNull(pages)){
return R.error("您没有关注的用户");
}
return R.ok().put("result", pages);