File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/MigrationTools.Clients.TfsObjectModel/Processors Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ private void ValidateAllUsersExistOrAreMapped(List<WorkItemData> sourceWorkItems
229229 {
230230 contextLog . Information ( "Validating::Check that all users in the source exist in the target or are mapped!" ) ;
231231 IdentityMapResult usersToMap = CommonTools . UserMapping . GetUsersInSourceMappedToTargetForWorkItems ( this , sourceWorkItems ) ;
232- if ( usersToMap . IdentityMap != null && usersToMap . IdentityMap . Count > 0 )
232+ if ( usersToMap != null && usersToMap . IdentityMap != null && usersToMap . IdentityMap . Count > 0 )
233233 {
234234 Log . LogWarning ( "Validating Failed! There are {usersToMap} users that exist in the source that do not exist "
235235 + "in the target. This will not cause any errors, but may result in disconnected users that could have "
You can’t perform that action at this time.
0 commit comments