Skip to content

Commit

Permalink
Revert mosip 26314 fix for read status for auth lock status (#797)
Browse files Browse the repository at this point in the history
* Fix for setting read status to false

* Revert "Fix for setting read status to false (#791)"

This reverts commit c00a051.

* Check test fix

* Fix NPE in test in github

* Test fix

* logic fix in test

---------

Co-authored-by: Loganathan Sekar <[email protected]>
  • Loading branch information
loganathan-sekaran and Loganathan Sekar authored Mar 13, 2023
1 parent 503748d commit 53444fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ public Tuple2<ResponseWrapper<VidResponseDto>, String> generateVidV2(BaseVidRequ
responseDto.setVersion(version);
}
responseDto.setResponsetime(DateUtils.formatToISOString(DateUtils.getUTCCurrentDateTime()));
if(eventId != null) {
if(eventId == null) {
eventId = ResidentConstants.NOT_AVAILABLE;
}
return Tuples.of(responseDto, eventId);
Expand Down

0 comments on commit 53444fc

Please sign in to comment.