huwhois 4 years ago
parent
commit
55dc800094

+ 3 - 0
src/main/java/io/renren/modules/app/controller/AppMeetingController.java

@ -54,6 +54,9 @@ public class AppMeetingController {
54 54
    public R contact(@PathVariable("id") Long id) {
55 55
        MeetingEntity meeting = meetingService.getById(id);
56 56
        String contactIds = meeting.getContactIds();
57
        if(contactIds == null) {
58
            return R.ok().put("list", null);
59
        }
57 60
58 61
        List<Map<String, Object>> list = employeeService.getContact(contactIds);
59 62
        return R.ok().put("list", list);