|
@@ -144,7 +144,7 @@ public class TBDingApplyServiceImpl extends ServiceImpl<TBDingApplyMapper, TBDin
|
|
|
List<IdentityLink> identityLinkList = taskService.getIdentityLinksForTask(task.getId());
|
|
|
if (!CollectionUtils.isEmpty(identityLinkList)) {
|
|
|
for (IdentityLink i : identityLinkList) {
|
|
|
- if (i.getUserId().equals(requestUser.getId().toString())) {
|
|
|
+ if (Objects.nonNull(i.getUserId()) && i.getUserId().equals(requestUser.getId().toString())) {
|
|
|
d.setMyself(true);
|
|
|
}
|
|
|
}
|