Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation error in warning about missing user principal name/email #866

Merged
merged 1 commit into from
Sep 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/WorkItemMigrator/JiraExport/JiraProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,11 @@ public string GetUserEmail(string usernameOrAccountId)
? $"Email is not public for user '{usernameOrAccountId}' in Jira," +
$" using usernameOrAccountId '{usernameOrAccountId}' for mapping." +
$" You may safely ignore this warning, unless there is a subsequent warning about" +
$" the username/accountId being missing in the usermapping file." +
$" the username/accountId being missing in the usermapping file."
: $"Email for user '{usernameOrAccountId}' not found in Jira," +
$" using username '{usernameOrAccountId}' for mapping." +
$" You may safely ignore this warning, unless there is a subsequent warning about" +
$" the username/accountId being missing in the usermapping file." +
$" the username/accountId being missing in the usermapping file."
);
}
email = isUserEmailMissing ? usernameOrAccountId : user.Email;
Expand Down